
    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_42c3f5bb7985da2ad5dce97c.woff')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_52e01d923c2e808a8a902a0b.woff')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_5e8173f68e01c31c3c83167a.woff')format("woff");}.ff3{font-family:ff3;line-height:1.053223;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_87c4f1341033db1f7cbceef6.woff')format("woff");}.ff4{font-family:ff4;line-height:1.053223;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_d0c7cbf13512a2d9c24f43b0.woff')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_f2f58b381daeede027ac33db.woff')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_39722ae25dfc9bbc61e26d87.woff')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_5f2d09a0c585ffac71973771.woff')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_aa0f5b471338833c8d7865f3.woff')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_7e63a130f05ad7bfc3520271.woff')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_1a08b6c9b0164888d4df8682.woff')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_183c5ca83c11c2da979b5378.woff')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_91938278938447da97c9813b.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_5760ed3603546527e3920262.woff')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_c19b4aa513c41afbb0f13650.woff')format("woff");}.fff{font-family:fff;line-height:0.914551;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_e440be4146c6adc99ac4c5ce.woff')format("woff");}.ff10{font-family:ff10;line-height:0.914551;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_c31b96a9d8bca08ab84e1320.woff')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_0946ffbb8af28a45dee638d6.woff')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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_f8fa81dc6c95b132cefccf00.woff')format("woff");}.ff15{font-family:ff15;line-height:1.090332;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);}
.v2{vertical-align:-18.000000px;}
.v3{vertical-align:-13.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.lsb{letter-spacing:-2.724000px;}
.ls16{letter-spacing:-2.250000px;}
.ls14{letter-spacing:-1.914000px;}
.ls13{letter-spacing:-1.836000px;}
.lsd{letter-spacing:-1.596000px;}
.lse{letter-spacing:-1.482000px;}
.ls17{letter-spacing:-1.128000px;}
.lsc{letter-spacing:-0.792000px;}
.lsa{letter-spacing:-0.378000px;}
.ls12{letter-spacing:-0.256200px;}
.ls9{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.090000px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:1.536000px;}
.ls3{letter-spacing:1.966500px;}
.ls6{letter-spacing:2.026500px;}
.ls2{letter-spacing:2.034000px;}
.ls5{letter-spacing:2.086500px;}
.ls4{letter-spacing:2.146500px;}
.ls15{letter-spacing:2.164500px;}
.lsf{letter-spacing:2.190000px;}
.ls7{letter-spacing:2.250000px;}
.ls8{letter-spacing:4.779000px;}
.ls19{letter-spacing:15.387000px;}
.ls18{letter-spacing:46.887000px;}
.ls11{letter-spacing:64.887000px;}
.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;}
}
.ws7{word-spacing:-16.875000px;}
.wsf{word-spacing:-16.789500px;}
.ws3{word-spacing:-16.146000px;}
.ws2{word-spacing:-15.354000px;}
.ws6{word-spacing:-14.625000px;}
.wsa{word-spacing:-14.368800px;}
.ws5{word-spacing:-13.221000px;}
.ws1{word-spacing:-12.531000px;}
.wse{word-spacing:-12.375000px;}
.ws0{word-spacing:-11.826000px;}
.wsc{word-spacing:-10.992450px;}
.wsb{word-spacing:-10.962000px;}
.ws8{word-spacing:-10.125000px;}
.ws4{word-spacing:-8.136000px;}
.wsd{word-spacing:-7.875000px;}
.ws9{word-spacing:0.000000px;}
._11{margin-left:-7.627500px;}
._b{margin-left:-6.259500px;}
._7{margin-left:-4.504500px;}
._a{margin-left:-3.423000px;}
._1{margin-left:-2.052000px;}
._3{margin-left:-1.008000px;}
._0{width:1.026000px;}
._2{width:2.592000px;}
._4{width:3.750000px;}
._5{width:5.364000px;}
._d{width:7.158000px;}
._9{width:8.290500px;}
._8{width:9.589500px;}
._6{width:11.730000px;}
._c{width:13.234500px;}
._e{width:16.149000px;}
._10{width:17.619000px;}
._19{width:20.785500px;}
._f{width:22.245000px;}
._18{width:25.098000px;}
._15{width:238.680000px;}
._17{width:263.403000px;}
._16{width:281.578500px;}
._12{width:293.319000px;}
._14{width:316.524900px;}
._13{width:335.416500px;}
.fc6{color:transparent;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc8{color:rgb(89,89,89);}
.fc7{color:rgb(64,64,64);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:40.500000px;}
.fs3{font-size:49.500000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:54.150000px;}
.fs4{font-size:58.500000px;}
.fs1{font-size:67.500000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:85.650000px;}
.y0{bottom:0.000000px;}
.y1e{bottom:0.015000px;}
.y3{bottom:3.375000px;}
.y74{bottom:3.382500px;}
.y3c{bottom:3.390000px;}
.y42{bottom:3.420000px;}
.y1c{bottom:4.500000px;}
.ye{bottom:11.295000px;}
.y1f{bottom:12.420000px;}
.yc{bottom:13.500000px;}
.ya8{bottom:16.875000px;}
.y98{bottom:17.025000px;}
.yc7{bottom:17.400000px;}
.y4{bottom:18.000000px;}
.y2{bottom:20.250000px;}
.y3b{bottom:20.265000px;}
.y41{bottom:22.545000px;}
.y1b{bottom:29.280000px;}
.y3f{bottom:29.295000px;}
.y5{bottom:30.375000px;}
.yb{bottom:30.405000px;}
.y3a{bottom:38.295000px;}
.y40{bottom:40.545000px;}
.y3e{bottom:43.965000px;}
.y2c{bottom:45.045000px;}
.ya{bottom:46.155000px;}
.ya7{bottom:46.800000px;}
.y97{bottom:46.950000px;}
.yc6{bottom:47.325000px;}
.y1{bottom:51.787500px;}
.y39{bottom:55.170000px;}
.y2b{bottom:60.795000px;}
.y1a{bottom:61.950000px;}
.y9e{bottom:64.275000px;}
.y8f{bottom:64.380000px;}
.ybf{bottom:64.800000px;}
.y38{bottom:72.090000px;}
.y9{bottom:73.185000px;}
.y19{bottom:78.825000px;}
.y2a{bottom:78.840000px;}
.y37{bottom:90.090000px;}
.y8{bottom:93.435000px;}
.y77{bottom:94.575000px;}
.y18{bottom:95.700000px;}
.y29{bottom:95.715000px;}
.y89{bottom:96.825000px;}
.yeb{bottom:97.950000px;}
.y53{bottom:99.075000px;}
.y9f{bottom:102.300000px;}
.y36{bottom:106.965000px;}
.y90{bottom:107.880000px;}
.yc0{bottom:108.900000px;}
.y7{bottom:110.355000px;}
.y17{bottom:111.495000px;}
.y76{bottom:112.575000px;}
.y88{bottom:113.700000px;}
.y28{bottom:113.745000px;}
.yea{bottom:114.825000px;}
.y52{bottom:115.950000px;}
.y35{bottom:123.870000px;}
.y87{bottom:127.237500px;}
.y16{bottom:128.370000px;}
.y99{bottom:130.500000px;}
.y75{bottom:130.612500px;}
.y27{bottom:130.620000px;}
.ye9{bottom:132.862500px;}
.y51{bottom:133.987500px;}
.y15{bottom:138.495000px;}
.ya0{bottom:140.355000px;}
.y34{bottom:141.870000px;}
.y26{bottom:147.495000px;}
.y73{bottom:148.612500px;}
.ybe{bottom:148.950000px;}
.ye8{bottom:149.737500px;}
.y50{bottom:150.870000px;}
.y91{bottom:151.380000px;}
.yc1{bottom:153.000000px;}
.y14{bottom:156.525000px;}
.y33{bottom:158.790000px;}
.y25{bottom:164.415000px;}
.y72{bottom:166.650000px;}
.y4f{bottom:167.775000px;}
.y13{bottom:174.525000px;}
.y32{bottom:175.665000px;}
.ya1{bottom:178.425000px;}
.ybd{bottom:179.820000px;}
.y24{bottom:181.290000px;}
.ye7{bottom:184.650000px;}
.y4e{bottom:185.775000px;}
.y71{bottom:188.025000px;}
.y31{bottom:193.665000px;}
.y12{bottom:193.695000px;}
.y92{bottom:194.880000px;}
.yc2{bottom:197.100000px;}
.y23{bottom:199.320000px;}
.yb9{bottom:201.570000px;}
.y4d{bottom:202.695000px;}
.y70{bottom:206.070000px;}
.y30{bottom:210.570000px;}
.ybc{bottom:210.705000px;}
.y9d{bottom:213.975000px;}
.yb8{bottom:215.070000px;}
.ya2{bottom:216.495000px;}
.ye6{bottom:218.445000px;}
.y11{bottom:219.570000px;}
.y6f{bottom:222.945000px;}
.y2f{bottom:227.445000px;}
.ye5{bottom:236.445000px;}
.y4c{bottom:237.570000px;}
.y93{bottom:238.380000px;}
.y6e{bottom:239.820000px;}
.y8e{bottom:240.705000px;}
.yc3{bottom:241.200000px;}
.y10{bottom:244.350000px;}
.y2e{bottom:245.490000px;}
.y9c{bottom:245.550000px;}
.y22{bottom:246.600000px;}
.ye4{bottom:253.350000px;}
.y4b{bottom:254.475000px;}
.ya3{bottom:254.550000px;}
.y6d{bottom:257.850000px;}
.y2d{bottom:262.365000px;}
.y21{bottom:264.600000px;}
.y8d{bottom:269.880000px;}
.y4a{bottom:271.350000px;}
.y6c{bottom:274.725000px;}
.y94{bottom:281.880000px;}
.y9b{bottom:283.620000px;}
.yc4{bottom:285.300000px;}
.y49{bottom:289.380000px;}
.ya4{bottom:292.620000px;}
.y6b{bottom:292.755000px;}
.ye3{bottom:296.130000px;}
.y48{bottom:306.255000px;}
.y8c{bottom:309.045000px;}
.y6a{bottom:310.755000px;}
.ye2{bottom:320.880000px;}
.ybb{bottom:320.955000px;}
.y47{bottom:323.130000px;}
.y95{bottom:325.380000px;}
.y69{bottom:327.675000px;}
.yc5{bottom:329.400000px;}
.ya5{bottom:330.675000px;}
.ye1{bottom:337.800000px;}
.y9a{bottom:338.025000px;}
.y46{bottom:341.175000px;}
.y68{bottom:344.550000px;}
.ye0{bottom:355.800000px;}
.y8b{bottom:356.850000px;}
.y45{bottom:358.050000px;}
.y67{bottom:362.550000px;}
.ya6{bottom:368.730000px;}
.y96{bottom:368.880000px;}
.ydf{bottom:372.720000px;}
.y44{bottom:374.955000px;}
.y66{bottom:379.470000px;}
.yde{bottom:389.595000px;}
.y43{bottom:394.080000px;}
.y65{bottom:396.345000px;}
.ydd{bottom:407.580000px;}
.y3d{bottom:408.705000px;}
.y64{bottom:414.375000px;}
.ydc{bottom:424.500000px;}
.y63{bottom:431.250000px;}
.ydb{bottom:441.375000px;}
.y62{bottom:449.250000px;}
.yda{bottom:459.420000px;}
.y20{bottom:463.905000px;}
.yd9{bottom:476.295000px;}
.yd8{bottom:493.200000px;}
.yd7{bottom:511.200000px;}
.y86{bottom:522.450000px;}
.y105{bottom:523.575000px;}
.yd6{bottom:528.075000px;}
.y85{bottom:537.105000px;}
.y104{bottom:540.495000px;}
.yd5{bottom:544.980000px;}
.y84{bottom:555.105000px;}
.y103{bottom:557.370000px;}
.yd4{bottom:562.995000px;}
.y83{bottom:573.105000px;}
.y102{bottom:575.355000px;}
.yd3{bottom:579.900000px;}
.yb7{bottom:582.150000px;}
.y82{bottom:591.150000px;}
.y101{bottom:592.275000px;}
.yd2{bottom:596.775000px;}
.yb6{bottom:599.025000px;}
.y81{bottom:609.150000px;}
.yd1{bottom:614.775000px;}
.yb5{bottom:615.900000px;}
.y100{bottom:627.195000px;}
.y80{bottom:630.570000px;}
.yd0{bottom:631.695000px;}
.yb4{bottom:633.945000px;}
.yff{bottom:644.070000px;}
.yb3{bottom:647.445000px;}
.yba{bottom:648.000000px;}
.y7f{bottom:648.570000px;}
.yfe{bottom:660.975000px;}
.y7e{bottom:665.475000px;}
.ycf{bottom:666.600000px;}
.yfd{bottom:678.975000px;}
.y7d{bottom:682.350000px;}
.yce{bottom:683.475000px;}
.yfc{bottom:695.850000px;}
.y7c{bottom:700.350000px;}
.yfb{bottom:712.770000px;}
.y7b{bottom:717.255000px;}
.ycd{bottom:718.380000px;}
.yfa{bottom:730.755000px;}
.y7a{bottom:735.255000px;}
.y1d{bottom:739.755000px;}
.y61{bottom:747.675000px;}
.ycc{bottom:752.175000px;}
.y79{bottom:753.300000px;}
.yf9{bottom:764.550000px;}
.y60{bottom:765.675000px;}
.y78{bottom:766.800000px;}
.yf{bottom:769.050000px;}
.y8a{bottom:769.500000px;}
.ycb{bottom:770.175000px;}
.yf8{bottom:782.550000px;}
.y5f{bottom:783.675000px;}
.yca{bottom:787.080000px;}
.yf7{bottom:799.455000px;}
.yc9{bottom:803.955000px;}
.yf6{bottom:816.330000px;}
.yc8{bottom:817.455000px;}
.yf5{bottom:834.375000px;}
.yf4{bottom:851.250000px;}
.yf3{bottom:868.125000px;}
.yf2{bottom:886.170000px;}
.yf1{bottom:903.045000px;}
.yf0{bottom:919.950000px;}
.yef{bottom:937.950000px;}
.yee{bottom:954.870000px;}
.yed{bottom:971.745000px;}
.yec{bottom:989.745000px;}
.y5e{bottom:994.275000px;}
.yb2{bottom:1001.025000px;}
.y5d{bottom:1006.650000px;}
.yb1{bottom:1015.650000px;}
.y5c{bottom:1023.525000px;}
.yd{bottom:1028.025000px;}
.yb0{bottom:1033.650000px;}
.y5b{bottom:1041.570000px;}
.yaf{bottom:1051.695000px;}
.y6{bottom:1053.945000px;}
.y5a{bottom:1058.445000px;}
.yae{bottom:1069.695000px;}
.y59{bottom:1075.320000px;}
.yad{bottom:1087.725000px;}
.y58{bottom:1093.350000px;}
.yac{bottom:1109.100000px;}
.y57{bottom:1110.225000px;}
.yab{bottom:1126.005000px;}
.y56{bottom:1127.130000px;}
.yaa{bottom:1144.005000px;}
.y55{bottom:1145.130000px;}
.ya9{bottom:1160.925000px;}
.y54{bottom:1162.050000px;}
.h21{height:16.875000px;}
.h22{height:16.912500px;}
.h28{height:18.000000px;}
.hc{height:25.912500px;}
.h1f{height:28.298584px;}
.h14{height:29.287500px;}
.h2{height:32.662500px;}
.h13{height:33.723633px;}
.h12{height:35.806641px;}
.h9{height:37.125000px;}
.h1c{height:40.875732px;}
.h1b{height:41.275635px;}
.h18{height:41.389893px;}
.h20{height:42.589600px;}
.he{height:43.075195px;}
.h1a{height:43.288330px;}
.hb{height:43.875000px;}
.h1e{height:46.298584px;}
.h27{height:46.478584px;}
.h24{height:46.801758px;}
.h25{height:46.931763px;}
.h17{height:49.234131px;}
.h19{height:51.158936px;}
.h4{height:53.709961px;}
.ha{height:54.000000px;}
.h1d{height:55.200000px;}
.h3{height:55.291992px;}
.h10{height:58.185791px;}
.h11{height:59.899658px;}
.hf{height:64.237500px;}
.h6{height:67.137451px;}
.h5{height:69.114990px;}
.h8{height:71.613281px;}
.h15{height:73.722656px;}
.h7{height:121.612500px;}
.hd{height:258.975000px;}
.h16{height:275.850000px;}
.h26{height:349.875000px;}
.h23{height:389.250000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w2{width:73.237500px;}
.w4{width:141.937500px;}
.w7{width:209.520000px;}
.wd{width:238.800000px;}
.we{width:241.050000px;}
.wf{width:243.345000px;}
.wa{width:277.125000px;}
.w9{width:452.820000px;}
.w8{width:522.675000px;}
.wc{width:587.250000px;}
.w5{width:590.250000px;}
.wb{width:648.000000px;}
.w1{width:658.950000px;}
.w6{width:732.195000px;}
.w3{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x36{left:1.125000px;}
.x4{left:7.875000px;}
.x2{left:9.000000px;}
.x2a{left:10.912500px;}
.xf{left:12.375000px;}
.x29{left:18.112500px;}
.xd{left:19.125000px;}
.x18{left:20.280000px;}
.xe{left:42.787500px;}
.x33{left:53.625000px;}
.x2b{left:67.530000px;}
.x1{left:81.112500px;}
.x1e{left:82.237500px;}
.x35{left:83.362500px;}
.x30{left:89.145000px;}
.x10{left:91.237500px;}
.x5{left:97.987500px;}
.x25{left:100.350000px;}
.x39{left:108.149987px;}
.x14{left:112.657500px;}
.x24{left:121.500000px;}
.x23{left:152.054987px;}
.x21{left:154.304987px;}
.x22{left:155.429987px;}
.x1d{left:156.554987px;}
.x2f{left:159.929987px;}
.x2d{left:163.349987px;}
.x12{left:168.967500px;}
.x15{left:177.982500px;}
.x11{left:183.607500px;}
.x13{left:194.857500px;}
.x16{left:214.012500px;}
.x6{left:223.050000px;}
.x31{left:224.655000px;}
.x26{left:249.225000px;}
.x9{left:284.955000px;}
.x17{left:290.625000px;}
.x34{left:297.570000px;}
.x1a{left:316.529987px;}
.x37{left:324.420000px;}
.x2c{left:327.945000px;}
.x7{left:339.045000px;}
.x8{left:359.325000px;}
.xc{left:364.957500px;}
.x27{left:398.130000px;}
.xb{left:428.025000px;}
.x1b{left:447.194987px;}
.xa{left:448.320000px;}
.x32{left:495.675000px;}
.x1f{left:535.050000px;}
.x28{left:547.050000px;}
.x38{left:567.720000px;}
.x19{left:602.654987px;}
.x3{left:740.070000px;}
.x2e{left:741.194987px;}
.x20{left:771.599987px;}
.x1c{left:785.129987px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v3{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.lsb{letter-spacing:-2.421333pt;}
.ls16{letter-spacing:-2.000000pt;}
.ls14{letter-spacing:-1.701333pt;}
.ls13{letter-spacing:-1.632000pt;}
.lsd{letter-spacing:-1.418667pt;}
.lse{letter-spacing:-1.317333pt;}
.ls17{letter-spacing:-1.002667pt;}
.lsc{letter-spacing:-0.704000pt;}
.lsa{letter-spacing:-0.336000pt;}
.ls12{letter-spacing:-0.227733pt;}
.ls9{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.080000pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.365333pt;}
.ls3{letter-spacing:1.748000pt;}
.ls6{letter-spacing:1.801333pt;}
.ls2{letter-spacing:1.808000pt;}
.ls5{letter-spacing:1.854667pt;}
.ls4{letter-spacing:1.908000pt;}
.ls15{letter-spacing:1.924000pt;}
.lsf{letter-spacing:1.946667pt;}
.ls7{letter-spacing:2.000000pt;}
.ls8{letter-spacing:4.248000pt;}
.ls19{letter-spacing:13.677333pt;}
.ls18{letter-spacing:41.677333pt;}
.ls11{letter-spacing:57.677333pt;}
.ws7{word-spacing:-15.000000pt;}
.wsf{word-spacing:-14.924000pt;}
.ws3{word-spacing:-14.352000pt;}
.ws2{word-spacing:-13.648000pt;}
.ws6{word-spacing:-13.000000pt;}
.wsa{word-spacing:-12.772267pt;}
.ws5{word-spacing:-11.752000pt;}
.ws1{word-spacing:-11.138667pt;}
.wse{word-spacing:-11.000000pt;}
.ws0{word-spacing:-10.512000pt;}
.wsc{word-spacing:-9.771067pt;}
.wsb{word-spacing:-9.744000pt;}
.ws8{word-spacing:-9.000000pt;}
.ws4{word-spacing:-7.232000pt;}
.wsd{word-spacing:-7.000000pt;}
.ws9{word-spacing:0.000000pt;}
._11{margin-left:-6.780000pt;}
._b{margin-left:-5.564000pt;}
._7{margin-left:-4.004000pt;}
._a{margin-left:-3.042667pt;}
._1{margin-left:-1.824000pt;}
._3{margin-left:-0.896000pt;}
._0{width:0.912000pt;}
._2{width:2.304000pt;}
._4{width:3.333333pt;}
._5{width:4.768000pt;}
._d{width:6.362667pt;}
._9{width:7.369333pt;}
._8{width:8.524000pt;}
._6{width:10.426667pt;}
._c{width:11.764000pt;}
._e{width:14.354667pt;}
._10{width:15.661333pt;}
._19{width:18.476000pt;}
._f{width:19.773333pt;}
._18{width:22.309333pt;}
._15{width:212.160000pt;}
._17{width:234.136000pt;}
._16{width:250.292000pt;}
._12{width:260.728000pt;}
._14{width:281.355467pt;}
._13{width:298.148000pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:36.000000pt;}
.fs3{font-size:44.000000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:48.133333pt;}
.fs4{font-size:52.000000pt;}
.fs1{font-size:60.000000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:76.133333pt;}
.y0{bottom:0.000000pt;}
.y1e{bottom:0.013333pt;}
.y3{bottom:3.000000pt;}
.y74{bottom:3.006667pt;}
.y3c{bottom:3.013333pt;}
.y42{bottom:3.040000pt;}
.y1c{bottom:4.000000pt;}
.ye{bottom:10.040000pt;}
.y1f{bottom:11.040000pt;}
.yc{bottom:12.000000pt;}
.ya8{bottom:15.000000pt;}
.y98{bottom:15.133333pt;}
.yc7{bottom:15.466667pt;}
.y4{bottom:16.000000pt;}
.y2{bottom:18.000000pt;}
.y3b{bottom:18.013333pt;}
.y41{bottom:20.040000pt;}
.y1b{bottom:26.026667pt;}
.y3f{bottom:26.040000pt;}
.y5{bottom:27.000000pt;}
.yb{bottom:27.026667pt;}
.y3a{bottom:34.040000pt;}
.y40{bottom:36.040000pt;}
.y3e{bottom:39.080000pt;}
.y2c{bottom:40.040000pt;}
.ya{bottom:41.026667pt;}
.ya7{bottom:41.600000pt;}
.y97{bottom:41.733333pt;}
.yc6{bottom:42.066667pt;}
.y1{bottom:46.033333pt;}
.y39{bottom:49.040000pt;}
.y2b{bottom:54.040000pt;}
.y1a{bottom:55.066667pt;}
.y9e{bottom:57.133333pt;}
.y8f{bottom:57.226667pt;}
.ybf{bottom:57.600000pt;}
.y38{bottom:64.080000pt;}
.y9{bottom:65.053333pt;}
.y19{bottom:70.066667pt;}
.y2a{bottom:70.080000pt;}
.y37{bottom:80.080000pt;}
.y8{bottom:83.053333pt;}
.y77{bottom:84.066667pt;}
.y18{bottom:85.066667pt;}
.y29{bottom:85.080000pt;}
.y89{bottom:86.066667pt;}
.yeb{bottom:87.066667pt;}
.y53{bottom:88.066667pt;}
.y9f{bottom:90.933333pt;}
.y36{bottom:95.080000pt;}
.y90{bottom:95.893333pt;}
.yc0{bottom:96.800000pt;}
.y7{bottom:98.093333pt;}
.y17{bottom:99.106667pt;}
.y76{bottom:100.066667pt;}
.y88{bottom:101.066667pt;}
.y28{bottom:101.106667pt;}
.yea{bottom:102.066667pt;}
.y52{bottom:103.066667pt;}
.y35{bottom:110.106667pt;}
.y87{bottom:113.100000pt;}
.y16{bottom:114.106667pt;}
.y99{bottom:116.000000pt;}
.y75{bottom:116.100000pt;}
.y27{bottom:116.106667pt;}
.ye9{bottom:118.100000pt;}
.y51{bottom:119.100000pt;}
.y15{bottom:123.106667pt;}
.ya0{bottom:124.760000pt;}
.y34{bottom:126.106667pt;}
.y26{bottom:131.106667pt;}
.y73{bottom:132.100000pt;}
.ybe{bottom:132.400000pt;}
.ye8{bottom:133.100000pt;}
.y50{bottom:134.106667pt;}
.y91{bottom:134.560000pt;}
.yc1{bottom:136.000000pt;}
.y14{bottom:139.133333pt;}
.y33{bottom:141.146667pt;}
.y25{bottom:146.146667pt;}
.y72{bottom:148.133333pt;}
.y4f{bottom:149.133333pt;}
.y13{bottom:155.133333pt;}
.y32{bottom:156.146667pt;}
.ya1{bottom:158.600000pt;}
.ybd{bottom:159.840000pt;}
.y24{bottom:161.146667pt;}
.ye7{bottom:164.133333pt;}
.y4e{bottom:165.133333pt;}
.y71{bottom:167.133333pt;}
.y31{bottom:172.146667pt;}
.y12{bottom:172.173333pt;}
.y92{bottom:173.226667pt;}
.yc2{bottom:175.200000pt;}
.y23{bottom:177.173333pt;}
.yb9{bottom:179.173333pt;}
.y4d{bottom:180.173333pt;}
.y70{bottom:183.173333pt;}
.y30{bottom:187.173333pt;}
.ybc{bottom:187.293333pt;}
.y9d{bottom:190.200000pt;}
.yb8{bottom:191.173333pt;}
.ya2{bottom:192.440000pt;}
.ye6{bottom:194.173333pt;}
.y11{bottom:195.173333pt;}
.y6f{bottom:198.173333pt;}
.y2f{bottom:202.173333pt;}
.ye5{bottom:210.173333pt;}
.y4c{bottom:211.173333pt;}
.y93{bottom:211.893333pt;}
.y6e{bottom:213.173333pt;}
.y8e{bottom:213.960000pt;}
.yc3{bottom:214.400000pt;}
.y10{bottom:217.200000pt;}
.y2e{bottom:218.213333pt;}
.y9c{bottom:218.266667pt;}
.y22{bottom:219.200000pt;}
.ye4{bottom:225.200000pt;}
.y4b{bottom:226.200000pt;}
.ya3{bottom:226.266667pt;}
.y6d{bottom:229.200000pt;}
.y2d{bottom:233.213333pt;}
.y21{bottom:235.200000pt;}
.y8d{bottom:239.893333pt;}
.y4a{bottom:241.200000pt;}
.y6c{bottom:244.200000pt;}
.y94{bottom:250.560000pt;}
.y9b{bottom:252.106667pt;}
.yc4{bottom:253.600000pt;}
.y49{bottom:257.226667pt;}
.ya4{bottom:260.106667pt;}
.y6b{bottom:260.226667pt;}
.ye3{bottom:263.226667pt;}
.y48{bottom:272.226667pt;}
.y8c{bottom:274.706667pt;}
.y6a{bottom:276.226667pt;}
.ye2{bottom:285.226667pt;}
.ybb{bottom:285.293333pt;}
.y47{bottom:287.226667pt;}
.y95{bottom:289.226667pt;}
.y69{bottom:291.266667pt;}
.yc5{bottom:292.800000pt;}
.ya5{bottom:293.933333pt;}
.ye1{bottom:300.266667pt;}
.y9a{bottom:300.466667pt;}
.y46{bottom:303.266667pt;}
.y68{bottom:306.266667pt;}
.ye0{bottom:316.266667pt;}
.y8b{bottom:317.200000pt;}
.y45{bottom:318.266667pt;}
.y67{bottom:322.266667pt;}
.ya6{bottom:327.760000pt;}
.y96{bottom:327.893333pt;}
.ydf{bottom:331.306667pt;}
.y44{bottom:333.293333pt;}
.y66{bottom:337.306667pt;}
.yde{bottom:346.306667pt;}
.y43{bottom:350.293333pt;}
.y65{bottom:352.306667pt;}
.ydd{bottom:362.293333pt;}
.y3d{bottom:363.293333pt;}
.y64{bottom:368.333333pt;}
.ydc{bottom:377.333333pt;}
.y63{bottom:383.333333pt;}
.ydb{bottom:392.333333pt;}
.y62{bottom:399.333333pt;}
.yda{bottom:408.373333pt;}
.y20{bottom:412.360000pt;}
.yd9{bottom:423.373333pt;}
.yd8{bottom:438.400000pt;}
.yd7{bottom:454.400000pt;}
.y86{bottom:464.400000pt;}
.y105{bottom:465.400000pt;}
.yd6{bottom:469.400000pt;}
.y85{bottom:477.426667pt;}
.y104{bottom:480.440000pt;}
.yd5{bottom:484.426667pt;}
.y84{bottom:493.426667pt;}
.y103{bottom:495.440000pt;}
.yd4{bottom:500.440000pt;}
.y83{bottom:509.426667pt;}
.y102{bottom:511.426667pt;}
.yd3{bottom:515.466667pt;}
.yb7{bottom:517.466667pt;}
.y82{bottom:525.466667pt;}
.y101{bottom:526.466667pt;}
.yd2{bottom:530.466667pt;}
.yb6{bottom:532.466667pt;}
.y81{bottom:541.466667pt;}
.yd1{bottom:546.466667pt;}
.yb5{bottom:547.466667pt;}
.y100{bottom:557.506667pt;}
.y80{bottom:560.506667pt;}
.yd0{bottom:561.506667pt;}
.yb4{bottom:563.506667pt;}
.yff{bottom:572.506667pt;}
.yb3{bottom:575.506667pt;}
.yba{bottom:576.000000pt;}
.y7f{bottom:576.506667pt;}
.yfe{bottom:587.533333pt;}
.y7e{bottom:591.533333pt;}
.ycf{bottom:592.533333pt;}
.yfd{bottom:603.533333pt;}
.y7d{bottom:606.533333pt;}
.yce{bottom:607.533333pt;}
.yfc{bottom:618.533333pt;}
.y7c{bottom:622.533333pt;}
.yfb{bottom:633.573333pt;}
.y7b{bottom:637.560000pt;}
.ycd{bottom:638.560000pt;}
.yfa{bottom:649.560000pt;}
.y7a{bottom:653.560000pt;}
.y1d{bottom:657.560000pt;}
.y61{bottom:664.600000pt;}
.ycc{bottom:668.600000pt;}
.y79{bottom:669.600000pt;}
.yf9{bottom:679.600000pt;}
.y60{bottom:680.600000pt;}
.y78{bottom:681.600000pt;}
.yf{bottom:683.600000pt;}
.y8a{bottom:684.000000pt;}
.ycb{bottom:684.600000pt;}
.yf8{bottom:695.600000pt;}
.y5f{bottom:696.600000pt;}
.yca{bottom:699.626667pt;}
.yf7{bottom:710.626667pt;}
.yc9{bottom:714.626667pt;}
.yf6{bottom:725.626667pt;}
.yc8{bottom:726.626667pt;}
.yf5{bottom:741.666667pt;}
.yf4{bottom:756.666667pt;}
.yf3{bottom:771.666667pt;}
.yf2{bottom:787.706667pt;}
.yf1{bottom:802.706667pt;}
.yf0{bottom:817.733333pt;}
.yef{bottom:833.733333pt;}
.yee{bottom:848.773333pt;}
.yed{bottom:863.773333pt;}
.yec{bottom:879.773333pt;}
.y5e{bottom:883.800000pt;}
.yb2{bottom:889.800000pt;}
.y5d{bottom:894.800000pt;}
.yb1{bottom:902.800000pt;}
.y5c{bottom:909.800000pt;}
.yd{bottom:913.800000pt;}
.yb0{bottom:918.800000pt;}
.y5b{bottom:925.840000pt;}
.yaf{bottom:934.840000pt;}
.y6{bottom:936.840000pt;}
.y5a{bottom:940.840000pt;}
.yae{bottom:950.840000pt;}
.y59{bottom:955.840000pt;}
.yad{bottom:966.866667pt;}
.y58{bottom:971.866667pt;}
.yac{bottom:985.866667pt;}
.y57{bottom:986.866667pt;}
.yab{bottom:1000.893333pt;}
.y56{bottom:1001.893333pt;}
.yaa{bottom:1016.893333pt;}
.y55{bottom:1017.893333pt;}
.ya9{bottom:1031.933333pt;}
.y54{bottom:1032.933333pt;}
.h21{height:15.000000pt;}
.h22{height:15.033333pt;}
.h28{height:16.000000pt;}
.hc{height:23.033333pt;}
.h1f{height:25.154297pt;}
.h14{height:26.033333pt;}
.h2{height:29.033333pt;}
.h13{height:29.976563pt;}
.h12{height:31.828125pt;}
.h9{height:33.000000pt;}
.h1c{height:36.333984pt;}
.h1b{height:36.689453pt;}
.h18{height:36.791016pt;}
.h20{height:37.857422pt;}
.he{height:38.289062pt;}
.h1a{height:38.478516pt;}
.hb{height:39.000000pt;}
.h1e{height:41.154297pt;}
.h27{height:41.314297pt;}
.h24{height:41.601562pt;}
.h25{height:41.717122pt;}
.h17{height:43.763672pt;}
.h19{height:45.474609pt;}
.h4{height:47.742188pt;}
.ha{height:48.000000pt;}
.h1d{height:49.066667pt;}
.h3{height:49.148438pt;}
.h10{height:51.720703pt;}
.h11{height:53.244141pt;}
.hf{height:57.100000pt;}
.h6{height:59.677734pt;}
.h5{height:61.435547pt;}
.h8{height:63.656250pt;}
.h15{height:65.531250pt;}
.h7{height:108.100000pt;}
.hd{height:230.200000pt;}
.h16{height:245.200000pt;}
.h26{height:311.000000pt;}
.h23{height:346.000000pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w2{width:65.100000pt;}
.w4{width:126.166667pt;}
.w7{width:186.240000pt;}
.wd{width:212.266667pt;}
.we{width:214.266667pt;}
.wf{width:216.306667pt;}
.wa{width:246.333333pt;}
.w9{width:402.506667pt;}
.w8{width:464.600000pt;}
.wc{width:522.000000pt;}
.w5{width:524.666667pt;}
.wb{width:576.000000pt;}
.w1{width:585.733333pt;}
.w6{width:650.840000pt;}
.w3{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x36{left:1.000000pt;}
.x4{left:7.000000pt;}
.x2{left:8.000000pt;}
.x2a{left:9.700000pt;}
.xf{left:11.000000pt;}
.x29{left:16.100000pt;}
.xd{left:17.000000pt;}
.x18{left:18.026667pt;}
.xe{left:38.033333pt;}
.x33{left:47.666667pt;}
.x2b{left:60.026667pt;}
.x1{left:72.100000pt;}
.x1e{left:73.100000pt;}
.x35{left:74.100000pt;}
.x30{left:79.240000pt;}
.x10{left:81.100000pt;}
.x5{left:87.100000pt;}
.x25{left:89.200000pt;}
.x39{left:96.133322pt;}
.x14{left:100.140000pt;}
.x24{left:108.000000pt;}
.x23{left:135.159988pt;}
.x21{left:137.159988pt;}
.x22{left:138.159988pt;}
.x1d{left:139.159988pt;}
.x2f{left:142.159988pt;}
.x2d{left:145.199988pt;}
.x12{left:150.193333pt;}
.x15{left:158.206667pt;}
.x11{left:163.206667pt;}
.x13{left:173.206667pt;}
.x16{left:190.233333pt;}
.x6{left:198.266667pt;}
.x31{left:199.693333pt;}
.x26{left:221.533333pt;}
.x9{left:253.293333pt;}
.x17{left:258.333333pt;}
.x34{left:264.506667pt;}
.x1a{left:281.359988pt;}
.x37{left:288.373333pt;}
.x2c{left:291.506667pt;}
.x7{left:301.373333pt;}
.x8{left:319.400000pt;}
.xc{left:324.406667pt;}
.x27{left:353.893333pt;}
.xb{left:380.466667pt;}
.x1b{left:397.506655pt;}
.xa{left:398.506667pt;}
.x32{left:440.600000pt;}
.x1f{left:475.600000pt;}
.x28{left:486.266667pt;}
.x38{left:504.640000pt;}
.x19{left:535.693322pt;}
.x3{left:657.840000pt;}
.x2e{left:658.839988pt;}
.x20{left:685.866655pt;}
.x1c{left:697.893322pt;}
}




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