
    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_c656b578c4453d456c01c26c.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_11f2c130e865bd01f90b3e57.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_1e6d4928d8a3d1848881bd70.woff2')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_c5b7e4e0719ed385c41444af.woff2')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_9555f3d3271594c8ed0ca7be.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_b87444467a102aee52b375a9.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_d74b4ace65817fba3430d716.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_5632a2273a4f3c85ca8534f1.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_00bcfa3c916a4335d468f32b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.944336;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_22bb7c46e238dc0855abe9ab.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_49cd0fb92f08067f5358691b.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_e83c806ddbd5530a097ac0af.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_76913c6278bafd5cf3477437.woff2')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_384600d2257193fdee0db6b4.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_62e9d8b773bc86b231a0b0bb.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_2e8c557afde1db250d2ced61.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.919434;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_104d93052707204f8615e7f7.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_ba0029de658a767b625fe32a.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.919434;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_01ce8cbd34e42b9a86a59126.woff2')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_6193fc93719873dbca485474.woff2')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;}
.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:-13.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.ls9{letter-spacing:-2.724000px;}
.lsc{letter-spacing:-1.596000px;}
.ls1b{letter-spacing:-1.494000px;}
.lsd{letter-spacing:-1.482000px;}
.lse{letter-spacing:-1.128000px;}
.lsa{letter-spacing:-0.792000px;}
.lsf{letter-spacing:-0.780000px;}
.ls16{letter-spacing:-0.454200px;}
.ls8{letter-spacing:-0.378000px;}
.ls17{letter-spacing:-0.304200px;}
.ls14{letter-spacing:-0.228000px;}
.ls7{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.090000px;}
.lsb{letter-spacing:0.690000px;}
.ls19{letter-spacing:0.720000px;}
.ls0{letter-spacing:1.296000px;}
.ls18{letter-spacing:1.332000px;}
.ls1{letter-spacing:1.476000px;}
.ls4{letter-spacing:1.906500px;}
.ls3{letter-spacing:1.966500px;}
.ls2{letter-spacing:2.034000px;}
.ls1a{letter-spacing:2.124000px;}
.ls1d{letter-spacing:2.164500px;}
.ls5{letter-spacing:2.250000px;}
.ls15{letter-spacing:2.310000px;}
.ls13{letter-spacing:2.370000px;}
.ls12{letter-spacing:2.430000px;}
.ls6{letter-spacing:4.779000px;}
.ls1e{letter-spacing:15.387000px;}
.ls1c{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;}
}
.ws5{word-spacing:-16.875000px;}
.ws11{word-spacing:-16.789500px;}
.ws10{word-spacing:-16.272000px;}
.ws3{word-spacing:-16.146000px;}
.ws2{word-spacing:-15.354000px;}
.ws6{word-spacing:-14.625000px;}
.ws7{word-spacing:-13.221000px;}
.wsf{word-spacing:-13.131000px;}
.ws1{word-spacing:-12.531000px;}
.wsd{word-spacing:-12.237900px;}
.ws0{word-spacing:-11.826000px;}
.ws4{word-spacing:-8.136000px;}
.ws8{word-spacing:0.000000px;}
.wsc{word-spacing:65.460000px;}
.wse{word-spacing:65.503950px;}
.wsa{word-spacing:65.610000px;}
.ws9{word-spacing:65.880000px;}
.wsb{word-spacing:827.196000px;}
._8{margin-left:-8.131500px;}
._b{margin-left:-6.435000px;}
._12{margin-left:-5.398500px;}
._7{margin-left:-4.248750px;}
._2{margin-left:-2.754000px;}
._1{margin-left:-1.188000px;}
._0{width:1.944000px;}
._4{width:3.060000px;}
._5{width:4.314000px;}
._3{width:5.400000px;}
._c{width:7.384500px;}
._9{width:9.115500px;}
._6{width:10.392000px;}
._e{width:12.334500px;}
._13{width:13.518000px;}
._a{width:14.586000px;}
._d{width:16.501500px;}
._10{width:17.701500px;}
._f{width:21.394500px;}
._11{width:25.992000px;}
._14{width:30.304500px;}
._1a{width:43.627500px;}
._1b{width:57.559500px;}
._17{width:76.350000px;}
._19{width:102.438000px;}
._18{width:107.680500px;}
._16{width:211.956750px;}
._15{width:225.816750px;}
.fc7{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(255,255,255);}
.fc6{color:rgb(89,89,89);}
.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;}
.fs9{font-size:85.500000px;}
.fs5{font-size:85.650000px;}
.y102{bottom:-1.125000px;}
.y0{bottom:0.000000px;}
.y19{bottom:1.125000px;}
.yff{bottom:2.250000px;}
.y3{bottom:3.375000px;}
.yc2{bottom:3.390000px;}
.yb8{bottom:3.405000px;}
.y17{bottom:4.500000px;}
.yd7{bottom:4.507500px;}
.y98{bottom:4.515000px;}
.y9b{bottom:4.545000px;}
.yd3{bottom:5.625000px;}
.ye{bottom:11.280000px;}
.y1a{bottom:12.375000px;}
.yc{bottom:13.500000px;}
.y49{bottom:14.625000px;}
.yf1{bottom:16.695000px;}
.yb3{bottom:16.725000px;}
.y4{bottom:16.875000px;}
.y48{bottom:18.000000px;}
.y2{bottom:19.125000px;}
.y46{bottom:20.250000px;}
.yb7{bottom:20.280000px;}
.yba{bottom:21.375000px;}
.yd6{bottom:21.412500px;}
.yb5{bottom:21.420000px;}
.ybe{bottom:22.530000px;}
.y16{bottom:28.155000px;}
.yb{bottom:30.405000px;}
.y45{bottom:38.235000px;}
.ybd{bottom:39.405000px;}
.y15{bottom:45.030000px;}
.ya{bottom:46.155000px;}
.yee{bottom:48.975000px;}
.ye4{bottom:49.245000px;}
.yb1{bottom:49.380000px;}
.y44{bottom:55.155000px;}
.y5{bottom:57.412500px;}
.y14{bottom:57.450000px;}
.yed{bottom:65.475000px;}
.yda{bottom:66.150000px;}
.yaa{bottom:66.300000px;}
.y13{bottom:70.950000px;}
.y43{bottom:72.030000px;}
.y9{bottom:73.200000px;}
.y1{bottom:81.075000px;}
.ye7{bottom:82.350000px;}
.y42{bottom:90.075000px;}
.ydb{bottom:90.945000px;}
.y8{bottom:93.450000px;}
.y12{bottom:95.730000px;}
.yab{bottom:102.450000px;}
.y41{bottom:106.950000px;}
.ye8{bottom:107.250000px;}
.y7{bottom:110.355000px;}
.ydc{bottom:115.725000px;}
.y40{bottom:123.855000px;}
.y93{bottom:126.112500px;}
.y11{bottom:129.480000px;}
.ye9{bottom:132.195000px;}
.y55{bottom:135.112500px;}
.yd8{bottom:136.237500px;}
.yac{bottom:138.570000px;}
.ydd{bottom:140.505000px;}
.ya8{bottom:140.737500px;}
.y3f{bottom:141.855000px;}
.y92{bottom:142.987500px;}
.yd5{bottom:149.737500px;}
.y54{bottom:151.995000px;}
.y10{bottom:154.275000px;}
.yea{bottom:157.080000px;}
.ya7{bottom:157.620000px;}
.y3e{bottom:158.730000px;}
.y91{bottom:159.900000px;}
.y100{bottom:162.150000px;}
.yde{bottom:165.300000px;}
.y129{bottom:166.650000px;}
.y53{bottom:170.025000px;}
.yad{bottom:174.720000px;}
.y3d{bottom:175.635000px;}
.ya6{bottom:175.650000px;}
.y90{bottom:177.900000px;}
.yeb{bottom:181.995000px;}
.y128{bottom:183.525000px;}
.yd4{bottom:185.775000px;}
.y52{bottom:186.900000px;}
.ydf{bottom:190.080000px;}
.ya5{bottom:192.525000px;}
.y3c{bottom:193.650000px;}
.y8f{bottom:194.775000px;}
.y127{bottom:201.570000px;}
.y51{bottom:203.820000px;}
.yd2{bottom:204.945000px;}
.yec{bottom:206.925000px;}
.ya4{bottom:209.445000px;}
.y3b{bottom:210.555000px;}
.yae{bottom:210.870000px;}
.y8e{bottom:211.695000px;}
.ye0{bottom:214.875000px;}
.y126{bottom:218.445000px;}
.y50{bottom:221.820000px;}
.yd1{bottom:224.070000px;}
.y3a{bottom:227.430000px;}
.ya3{bottom:227.445000px;}
.y8d{bottom:229.695000px;}
.y125{bottom:235.320000px;}
.y2a{bottom:236.430000px;}
.y4f{bottom:238.695000px;}
.ye1{bottom:239.700000px;}
.ya2{bottom:244.350000px;}
.y39{bottom:245.430000px;}
.y8c{bottom:246.600000px;}
.yaf{bottom:247.005000px;}
.y29{bottom:251.100000px;}
.y124{bottom:253.350000px;}
.y4e{bottom:255.600000px;}
.yc4{bottom:258.975000px;}
.y38{bottom:262.350000px;}
.y8b{bottom:263.475000px;}
.ye2{bottom:264.495000px;}
.yf0{bottom:266.400000px;}
.y28{bottom:270.225000px;}
.y4d{bottom:273.600000px;}
.yc3{bottom:276.975000px;}
.y37{bottom:279.225000px;}
.yd0{bottom:280.350000px;}
.y8a{bottom:281.475000px;}
.yb0{bottom:283.170000px;}
.y27{bottom:287.100000px;}
.y123{bottom:287.130000px;}
.ye3{bottom:289.275000px;}
.y4c{bottom:290.505000px;}
.yef{bottom:292.275000px;}
.ycf{bottom:293.880000px;}
.yc1{bottom:295.005000px;}
.ye6{bottom:297.000000px;}
.y36{bottom:297.255000px;}
.y89{bottom:298.395000px;}
.y26{bottom:304.005000px;}
.y122{bottom:305.145000px;}
.y4b{bottom:307.380000px;}
.yc0{bottom:313.005000px;}
.y35{bottom:314.130000px;}
.y88{bottom:315.270000px;}
.y25{bottom:322.005000px;}
.y121{bottom:322.020000px;}
.y4a{bottom:325.395000px;}
.yb2{bottom:330.645000px;}
.y34{bottom:331.005000px;}
.ybf{bottom:331.050000px;}
.y87{bottom:333.300000px;}
.y24{bottom:338.910000px;}
.y120{bottom:338.925000px;}
.y47{bottom:340.050000px;}
.y33{bottom:349.035000px;}
.y86{bottom:350.175000px;}
.ye5{bottom:350.880000px;}
.y23{bottom:356.925000px;}
.yfe{bottom:362.550000px;}
.y32{bottom:365.910000px;}
.y85{bottom:367.050000px;}
.y1b{bottom:369.345000px;}
.y22{bottom:373.800000px;}
.y11f{bottom:373.830000px;}
.y31{bottom:382.830000px;}
.ya1{bottom:383.955000px;}
.y84{bottom:385.080000px;}
.y11e{bottom:390.705000px;}
.y21{bottom:391.830000px;}
.y30{bottom:400.830000px;}
.y83{bottom:401.955000px;}
.y20{bottom:408.705000px;}
.y2f{bottom:417.735000px;}
.ya0{bottom:417.750000px;}
.y82{bottom:418.875000px;}
.y11d{bottom:425.625000px;}
.y1f{bottom:426.735000px;}
.y9f{bottom:431.250000px;}
.ya9{bottom:434.250000px;}
.y2e{bottom:434.610000px;}
.y81{bottom:436.875000px;}
.y11c{bottom:442.500000px;}
.y1e{bottom:443.610000px;}
.y2d{bottom:452.610000px;}
.y80{bottom:453.795000px;}
.y11b{bottom:460.545000px;}
.y2c{bottom:469.530000px;}
.y1d{bottom:470.655000px;}
.y7f{bottom:470.670000px;}
.y11a{bottom:477.420000px;}
.y2b{bottom:486.405000px;}
.y1c{bottom:488.655000px;}
.y119{bottom:494.325000px;}
.y7e{bottom:505.575000px;}
.y118{bottom:512.325000px;}
.y7d{bottom:522.450000px;}
.y117{bottom:529.200000px;}
.y7c{bottom:540.495000px;}
.y116{bottom:546.120000px;}
.y7b{bottom:557.370000px;}
.y115{bottom:564.120000px;}
.yfd{bottom:571.980000px;}
.y7a{bottom:574.245000px;}
.y114{bottom:581.025000px;}
.yfc{bottom:588.900000px;}
.y79{bottom:592.275000px;}
.y113{bottom:597.900000px;}
.yfb{bottom:606.900000px;}
.y78{bottom:609.150000px;}
.y112{bottom:615.900000px;}
.yfa{bottom:623.820000px;}
.yce{bottom:624.945000px;}
.y77{bottom:626.070000px;}
.y111{bottom:632.820000px;}
.yf9{bottom:640.695000px;}
.ycd{bottom:641.820000px;}
.y76{bottom:644.070000px;}
.y110{bottom:649.695000px;}
.ycc{bottom:658.695000px;}
.y75{bottom:660.975000px;}
.y10f{bottom:667.725000px;}
.yf8{bottom:675.600000px;}
.ycb{bottom:676.725000px;}
.y74{bottom:677.850000px;}
.y10e{bottom:684.600000px;}
.yca{bottom:690.225000px;}
.yf7{bottom:692.475000px;}
.y73{bottom:695.850000px;}
.y10d{bottom:701.475000px;}
.yc9{bottom:708.255000px;}
.yf6{bottom:710.505000px;}
.y72{bottom:712.770000px;}
.y10c{bottom:719.520000px;}
.yc8{bottom:726.255000px;}
.yf5{bottom:727.380000px;}
.y71{bottom:729.645000px;}
.y10b{bottom:736.395000px;}
.yf4{bottom:744.300000px;}
.y70{bottom:747.675000px;}
.yc7{bottom:748.800000px;}
.y10a{bottom:753.300000px;}
.yf3{bottom:762.300000px;}
.y6f{bottom:764.550000px;}
.yc6{bottom:765.675000px;}
.y109{bottom:771.300000px;}
.yf2{bottom:775.800000px;}
.yc5{bottom:779.175000px;}
.yd9{bottom:781.875000px;}
.y6e{bottom:782.550000px;}
.y108{bottom:788.205000px;}
.y103{bottom:798.330000px;}
.y6d{bottom:800.580000px;}
.y107{bottom:805.080000px;}
.y9e{bottom:817.455000px;}
.y6c{bottom:819.705000px;}
.y106{bottom:823.080000px;}
.y9d{bottom:834.375000px;}
.y6b{bottom:837.750000px;}
.y105{bottom:840.000000px;}
.y9c{bottom:852.375000px;}
.y6a{bottom:855.750000px;}
.y104{bottom:856.875000px;}
.y9a{bottom:865.875000px;}
.y18{bottom:869.295000px;}
.y69{bottom:874.920000px;}
.y99{bottom:883.920000px;}
.y68{bottom:891.795000px;}
.yf{bottom:899.670000px;}
.y97{bottom:901.905000px;}
.y67{bottom:908.670000px;}
.y96{bottom:919.950000px;}
.y66{bottom:926.700000px;}
.y95{bottom:937.950000px;}
.y65{bottom:943.575000px;}
.y64{bottom:960.495000px;}
.y94{bottom:977.370000px;}
.y63{bottom:978.495000px;}
.ybc{bottom:991.995000px;}
.y62{bottom:995.400000px;}
.y101{bottom:1008.900000px;}
.y61{bottom:1012.275000px;}
.y60{bottom:1030.275000px;}
.ybb{bottom:1046.070000px;}
.y5f{bottom:1047.195000px;}
.y5e{bottom:1064.070000px;}
.yd{bottom:1068.570000px;}
.yb9{bottom:1080.975000px;}
.y5d{bottom:1082.100000px;}
.y6{bottom:1094.475000px;}
.y5c{bottom:1098.975000px;}
.y5b{bottom:1115.850000px;}
.yb6{bottom:1116.975000px;}
.y5a{bottom:1133.880000px;}
.y59{bottom:1150.755000px;}
.yb4{bottom:1151.880000px;}
.y58{bottom:1167.675000px;}
.y57{bottom:1185.675000px;}
.y56{bottom:1202.580000px;}
.h30{height:15.750000px;}
.h2a{height:16.875000px;}
.h29{height:16.912500px;}
.h1f{height:17.985000px;}
.h1e{height:18.000000px;}
.h1d{height:18.037500px;}
.h2b{height:19.125000px;}
.h2f{height:19.162500px;}
.h31{height:20.250000px;}
.h32{height:22.500000px;}
.hb{height:25.912500px;}
.h1b{height:29.287500px;}
.h12{height:30.360000px;}
.h2{height:32.625000px;}
.h11{height:33.723633px;}
.h28{height:33.750000px;}
.h25{height:33.787500px;}
.h26{height:34.875000px;}
.h24{height:34.912500px;}
.h8{height:37.125000px;}
.h19{height:40.847168px;}
.h1a{height:41.275635px;}
.h17{height:41.389893px;}
.h1c{height:42.589600px;}
.hd{height:43.075195px;}
.h18{height:43.288330px;}
.ha{height:43.875000px;}
.h4{height:47.223633px;}
.h15{height:49.234131px;}
.h16{height:51.158936px;}
.h27{height:52.950000px;}
.h22{height:53.709961px;}
.h21{height:53.859155px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.hf{height:58.185791px;}
.h10{height:59.899658px;}
.he{height:64.237500px;}
.h5{height:69.114990px;}
.h6{height:71.613281px;}
.h13{height:73.722656px;}
.h2e{height:85.040771px;}
.h23{height:85.189966px;}
.h7{height:121.612500px;}
.hc{height:168.885000px;}
.h2d{height:324.000000px;}
.h20{height:362.250000px;}
.h2c{height:382.500000px;}
.h14{height:499.935000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w1a{width:27.037500px;}
.w19{width:31.537500px;}
.w1b{width:33.787500px;}
.w18{width:52.950000px;}
.w2{width:73.237500px;}
.w15{width:117.150000px;}
.w14{width:120.525000px;}
.wd{width:125.025000px;}
.w11{width:143.062500px;}
.w12{width:145.312500px;}
.w4{width:152.055000px;}
.w10{width:153.180000px;}
.wf{width:220.800000px;}
.w7{width:224.145000px;}
.wa{width:241.050000px;}
.wb{width:241.095000px;}
.w9{width:245.550000px;}
.w13{width:246.675000px;}
.we{width:384.120000px;}
.w8{width:508.050000px;}
.w5{width:580.125000px;}
.wc{width:597.375000px;}
.w17{width:610.875000px;}
.w16{width:619.875000px;}
.w1{width:658.950000px;}
.w6{width:732.195000px;}
.w3{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.875000px;}
.x2{left:9.000000px;}
.x61{left:10.155000px;}
.x5f{left:11.250000px;}
.x13{left:12.405000px;}
.x28{left:14.625000px;}
.x5c{left:20.280000px;}
.x5a{left:21.405000px;}
.x25{left:25.425000px;}
.x49{left:30.480000px;}
.x2d{left:32.662500px;}
.x2e{left:43.912500px;}
.x4e{left:49.650000px;}
.x43{left:52.950000px;}
.x2c{left:54.075000px;}
.x47{left:56.310000px;}
.x2b{left:58.575000px;}
.x39{left:63.075000px;}
.x30{left:64.200000px;}
.x34{left:67.575000px;}
.x3d{left:68.700000px;}
.x1c{left:72.105000px;}
.x10{left:73.192500px;}
.x26{left:79.020000px;}
.x1{left:81.112500px;}
.x18{left:82.237500px;}
.x1a{left:96.900000px;}
.x5{left:97.987500px;}
.x19{left:99.112500px;}
.x50{left:102.720000px;}
.x4b{left:103.770000px;}
.x1e{left:105.885000px;}
.x14{left:108.149987px;}
.x1d{left:111.525000px;}
.xe{left:114.907500px;}
.x1f{left:116.025000px;}
.x20{left:118.282500px;}
.xf{left:121.657500px;}
.xd{left:126.157500px;}
.xc{left:128.407500px;}
.x4f{left:130.800000px;}
.x48{left:135.000000px;}
.x4d{left:139.500000px;}
.x24{left:146.250000px;}
.x4a{left:157.905000px;}
.x54{left:198.645000px;}
.x57{left:201.644987px;}
.x29{left:207.270000px;}
.x51{left:209.400000px;}
.x11{left:214.012500px;}
.x38{left:228.675000px;}
.x6{left:233.175000px;}
.x3e{left:235.424987px;}
.x2f{left:236.550000px;}
.x41{left:238.799987px;}
.x27{left:254.025000px;}
.x55{left:262.500000px;}
.x4c{left:267.000000px;}
.x9{left:273.705000px;}
.x21{left:283.874987px;}
.x23{left:287.249987px;}
.x35{left:291.749987px;}
.x16{left:292.874987px;}
.x37{left:295.124987px;}
.x12{left:305.250000px;}
.x53{left:312.780000px;}
.x7{left:328.920000px;}
.x42{left:330.045000px;}
.x52{left:336.900000px;}
.x8{left:348.075000px;}
.xb{left:364.957500px;}
.x17{left:366.074987px;}
.x3a{left:373.995000px;}
.x31{left:380.745000px;}
.x5d{left:386.370000px;}
.x5b{left:388.620000px;}
.x5e{left:397.650000px;}
.xa{left:437.055000px;}
.x40{left:444.944987px;}
.x15{left:447.194987px;}
.x44{left:451.695000px;}
.x3b{left:520.425000px;}
.x32{left:524.925000px;}
.x62{left:538.425000px;}
.x1b{left:571.095000px;}
.x45{left:573.375000px;}
.x56{left:589.124987px;}
.x2a{left:591.375000px;}
.x3c{left:666.870000px;}
.x33{left:669.120000px;}
.x59{left:680.370000px;}
.x60{left:685.995000px;}
.x46{left:695.025000px;}
.x58{left:736.694987px;}
.x3{left:740.070000px;}
.x22{left:746.819987px;}
.x3f{left:753.599987px;}
.x36{left:758.099987px;}
@media print{
.v2{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls9{letter-spacing:-2.421333pt;}
.lsc{letter-spacing:-1.418667pt;}
.ls1b{letter-spacing:-1.328000pt;}
.lsd{letter-spacing:-1.317333pt;}
.lse{letter-spacing:-1.002667pt;}
.lsa{letter-spacing:-0.704000pt;}
.lsf{letter-spacing:-0.693333pt;}
.ls16{letter-spacing:-0.403733pt;}
.ls8{letter-spacing:-0.336000pt;}
.ls17{letter-spacing:-0.270400pt;}
.ls14{letter-spacing:-0.202667pt;}
.ls7{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.080000pt;}
.lsb{letter-spacing:0.613333pt;}
.ls19{letter-spacing:0.640000pt;}
.ls0{letter-spacing:1.152000pt;}
.ls18{letter-spacing:1.184000pt;}
.ls1{letter-spacing:1.312000pt;}
.ls4{letter-spacing:1.694667pt;}
.ls3{letter-spacing:1.748000pt;}
.ls2{letter-spacing:1.808000pt;}
.ls1a{letter-spacing:1.888000pt;}
.ls1d{letter-spacing:1.924000pt;}
.ls5{letter-spacing:2.000000pt;}
.ls15{letter-spacing:2.053333pt;}
.ls13{letter-spacing:2.106667pt;}
.ls12{letter-spacing:2.160000pt;}
.ls6{letter-spacing:4.248000pt;}
.ls1e{letter-spacing:13.677333pt;}
.ls1c{letter-spacing:41.677333pt;}
.ls11{letter-spacing:57.677333pt;}
.ws5{word-spacing:-15.000000pt;}
.ws11{word-spacing:-14.924000pt;}
.ws10{word-spacing:-14.464000pt;}
.ws3{word-spacing:-14.352000pt;}
.ws2{word-spacing:-13.648000pt;}
.ws6{word-spacing:-13.000000pt;}
.ws7{word-spacing:-11.752000pt;}
.wsf{word-spacing:-11.672000pt;}
.ws1{word-spacing:-11.138667pt;}
.wsd{word-spacing:-10.878133pt;}
.ws0{word-spacing:-10.512000pt;}
.ws4{word-spacing:-7.232000pt;}
.ws8{word-spacing:0.000000pt;}
.wsc{word-spacing:58.186667pt;}
.wse{word-spacing:58.225733pt;}
.wsa{word-spacing:58.320000pt;}
.ws9{word-spacing:58.560000pt;}
.wsb{word-spacing:735.285333pt;}
._8{margin-left:-7.228000pt;}
._b{margin-left:-5.720000pt;}
._12{margin-left:-4.798667pt;}
._7{margin-left:-3.776667pt;}
._2{margin-left:-2.448000pt;}
._1{margin-left:-1.056000pt;}
._0{width:1.728000pt;}
._4{width:2.720000pt;}
._5{width:3.834667pt;}
._3{width:4.800000pt;}
._c{width:6.564000pt;}
._9{width:8.102667pt;}
._6{width:9.237333pt;}
._e{width:10.964000pt;}
._13{width:12.016000pt;}
._a{width:12.965333pt;}
._d{width:14.668000pt;}
._10{width:15.734667pt;}
._f{width:19.017333pt;}
._11{width:23.104000pt;}
._14{width:26.937333pt;}
._1a{width:38.780000pt;}
._1b{width:51.164000pt;}
._17{width:67.866667pt;}
._19{width:91.056000pt;}
._18{width:95.716000pt;}
._16{width:188.406000pt;}
._15{width:200.726000pt;}
.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;}
.fs9{font-size:76.000000pt;}
.fs5{font-size:76.133333pt;}
.y102{bottom:-1.000000pt;}
.y0{bottom:0.000000pt;}
.y19{bottom:1.000000pt;}
.yff{bottom:2.000000pt;}
.y3{bottom:3.000000pt;}
.yc2{bottom:3.013333pt;}
.yb8{bottom:3.026667pt;}
.y17{bottom:4.000000pt;}
.yd7{bottom:4.006667pt;}
.y98{bottom:4.013333pt;}
.y9b{bottom:4.040000pt;}
.yd3{bottom:5.000000pt;}
.ye{bottom:10.026667pt;}
.y1a{bottom:11.000000pt;}
.yc{bottom:12.000000pt;}
.y49{bottom:13.000000pt;}
.yf1{bottom:14.840000pt;}
.yb3{bottom:14.866667pt;}
.y4{bottom:15.000000pt;}
.y48{bottom:16.000000pt;}
.y2{bottom:17.000000pt;}
.y46{bottom:18.000000pt;}
.yb7{bottom:18.026667pt;}
.yba{bottom:19.000000pt;}
.yd6{bottom:19.033333pt;}
.yb5{bottom:19.040000pt;}
.ybe{bottom:20.026667pt;}
.y16{bottom:25.026667pt;}
.yb{bottom:27.026667pt;}
.y45{bottom:33.986667pt;}
.ybd{bottom:35.026667pt;}
.y15{bottom:40.026667pt;}
.ya{bottom:41.026667pt;}
.yee{bottom:43.533333pt;}
.ye4{bottom:43.773333pt;}
.yb1{bottom:43.893333pt;}
.y44{bottom:49.026667pt;}
.y5{bottom:51.033333pt;}
.y14{bottom:51.066667pt;}
.yed{bottom:58.200000pt;}
.yda{bottom:58.800000pt;}
.yaa{bottom:58.933333pt;}
.y13{bottom:63.066667pt;}
.y43{bottom:64.026667pt;}
.y9{bottom:65.066667pt;}
.y1{bottom:72.066667pt;}
.ye7{bottom:73.200000pt;}
.y42{bottom:80.066667pt;}
.ydb{bottom:80.840000pt;}
.y8{bottom:83.066667pt;}
.y12{bottom:85.093333pt;}
.yab{bottom:91.066667pt;}
.y41{bottom:95.066667pt;}
.ye8{bottom:95.333333pt;}
.y7{bottom:98.093333pt;}
.ydc{bottom:102.866667pt;}
.y40{bottom:110.093333pt;}
.y93{bottom:112.100000pt;}
.y11{bottom:115.093333pt;}
.ye9{bottom:117.506667pt;}
.y55{bottom:120.100000pt;}
.yd8{bottom:121.100000pt;}
.yac{bottom:123.173333pt;}
.ydd{bottom:124.893333pt;}
.ya8{bottom:125.100000pt;}
.y3f{bottom:126.093333pt;}
.y92{bottom:127.100000pt;}
.yd5{bottom:133.100000pt;}
.y54{bottom:135.106667pt;}
.y10{bottom:137.133333pt;}
.yea{bottom:139.626667pt;}
.ya7{bottom:140.106667pt;}
.y3e{bottom:141.093333pt;}
.y91{bottom:142.133333pt;}
.y100{bottom:144.133333pt;}
.yde{bottom:146.933333pt;}
.y129{bottom:148.133333pt;}
.y53{bottom:151.133333pt;}
.yad{bottom:155.306667pt;}
.y3d{bottom:156.120000pt;}
.ya6{bottom:156.133333pt;}
.y90{bottom:158.133333pt;}
.yeb{bottom:161.773333pt;}
.y128{bottom:163.133333pt;}
.yd4{bottom:165.133333pt;}
.y52{bottom:166.133333pt;}
.ydf{bottom:168.960000pt;}
.ya5{bottom:171.133333pt;}
.y3c{bottom:172.133333pt;}
.y8f{bottom:173.133333pt;}
.y127{bottom:179.173333pt;}
.y51{bottom:181.173333pt;}
.yd2{bottom:182.173333pt;}
.yec{bottom:183.933333pt;}
.ya4{bottom:186.173333pt;}
.y3b{bottom:187.160000pt;}
.yae{bottom:187.440000pt;}
.y8e{bottom:188.173333pt;}
.ye0{bottom:191.000000pt;}
.y126{bottom:194.173333pt;}
.y50{bottom:197.173333pt;}
.yd1{bottom:199.173333pt;}
.y3a{bottom:202.160000pt;}
.ya3{bottom:202.173333pt;}
.y8d{bottom:204.173333pt;}
.y125{bottom:209.173333pt;}
.y2a{bottom:210.160000pt;}
.y4f{bottom:212.173333pt;}
.ye1{bottom:213.066667pt;}
.ya2{bottom:217.200000pt;}
.y39{bottom:218.160000pt;}
.y8c{bottom:219.200000pt;}
.yaf{bottom:219.560000pt;}
.y29{bottom:223.200000pt;}
.y124{bottom:225.200000pt;}
.y4e{bottom:227.200000pt;}
.yc4{bottom:230.200000pt;}
.y38{bottom:233.200000pt;}
.y8b{bottom:234.200000pt;}
.ye2{bottom:235.106667pt;}
.yf0{bottom:236.800000pt;}
.y28{bottom:240.200000pt;}
.y4d{bottom:243.200000pt;}
.yc3{bottom:246.200000pt;}
.y37{bottom:248.200000pt;}
.yd0{bottom:249.200000pt;}
.y8a{bottom:250.200000pt;}
.yb0{bottom:251.706667pt;}
.y27{bottom:255.200000pt;}
.y123{bottom:255.226667pt;}
.ye3{bottom:257.133333pt;}
.y4c{bottom:258.226667pt;}
.yef{bottom:259.800000pt;}
.ycf{bottom:261.226667pt;}
.yc1{bottom:262.226667pt;}
.ye6{bottom:264.000000pt;}
.y36{bottom:264.226667pt;}
.y89{bottom:265.240000pt;}
.y26{bottom:270.226667pt;}
.y122{bottom:271.240000pt;}
.y4b{bottom:273.226667pt;}
.yc0{bottom:278.226667pt;}
.y35{bottom:279.226667pt;}
.y88{bottom:280.240000pt;}
.y25{bottom:286.226667pt;}
.y121{bottom:286.240000pt;}
.y4a{bottom:289.240000pt;}
.yb2{bottom:293.906667pt;}
.y34{bottom:294.226667pt;}
.ybf{bottom:294.266667pt;}
.y87{bottom:296.266667pt;}
.y24{bottom:301.253333pt;}
.y120{bottom:301.266667pt;}
.y47{bottom:302.266667pt;}
.y33{bottom:310.253333pt;}
.y86{bottom:311.266667pt;}
.ye5{bottom:311.893333pt;}
.y23{bottom:317.266667pt;}
.yfe{bottom:322.266667pt;}
.y32{bottom:325.253333pt;}
.y85{bottom:326.266667pt;}
.y1b{bottom:328.306667pt;}
.y22{bottom:332.266667pt;}
.y11f{bottom:332.293333pt;}
.y31{bottom:340.293333pt;}
.ya1{bottom:341.293333pt;}
.y84{bottom:342.293333pt;}
.y11e{bottom:347.293333pt;}
.y21{bottom:348.293333pt;}
.y30{bottom:356.293333pt;}
.y83{bottom:357.293333pt;}
.y20{bottom:363.293333pt;}
.y2f{bottom:371.320000pt;}
.ya0{bottom:371.333333pt;}
.y82{bottom:372.333333pt;}
.y11d{bottom:378.333333pt;}
.y1f{bottom:379.320000pt;}
.y9f{bottom:383.333333pt;}
.ya9{bottom:386.000000pt;}
.y2e{bottom:386.320000pt;}
.y81{bottom:388.333333pt;}
.y11c{bottom:393.333333pt;}
.y1e{bottom:394.320000pt;}
.y2d{bottom:402.320000pt;}
.y80{bottom:403.373333pt;}
.y11b{bottom:409.373333pt;}
.y2c{bottom:417.360000pt;}
.y1d{bottom:418.360000pt;}
.y7f{bottom:418.373333pt;}
.y11a{bottom:424.373333pt;}
.y2b{bottom:432.360000pt;}
.y1c{bottom:434.360000pt;}
.y119{bottom:439.400000pt;}
.y7e{bottom:449.400000pt;}
.y118{bottom:455.400000pt;}
.y7d{bottom:464.400000pt;}
.y117{bottom:470.400000pt;}
.y7c{bottom:480.440000pt;}
.y116{bottom:485.440000pt;}
.y7b{bottom:495.440000pt;}
.y115{bottom:501.440000pt;}
.yfd{bottom:508.426667pt;}
.y7a{bottom:510.440000pt;}
.y114{bottom:516.466667pt;}
.yfc{bottom:523.466667pt;}
.y79{bottom:526.466667pt;}
.y113{bottom:531.466667pt;}
.yfb{bottom:539.466667pt;}
.y78{bottom:541.466667pt;}
.y112{bottom:547.466667pt;}
.yfa{bottom:554.506667pt;}
.yce{bottom:555.506667pt;}
.y77{bottom:556.506667pt;}
.y111{bottom:562.506667pt;}
.yf9{bottom:569.506667pt;}
.ycd{bottom:570.506667pt;}
.y76{bottom:572.506667pt;}
.y110{bottom:577.506667pt;}
.ycc{bottom:585.506667pt;}
.y75{bottom:587.533333pt;}
.y10f{bottom:593.533333pt;}
.yf8{bottom:600.533333pt;}
.ycb{bottom:601.533333pt;}
.y74{bottom:602.533333pt;}
.y10e{bottom:608.533333pt;}
.yca{bottom:613.533333pt;}
.yf7{bottom:615.533333pt;}
.y73{bottom:618.533333pt;}
.y10d{bottom:623.533333pt;}
.yc9{bottom:629.560000pt;}
.yf6{bottom:631.560000pt;}
.y72{bottom:633.573333pt;}
.y10c{bottom:639.573333pt;}
.yc8{bottom:645.560000pt;}
.yf5{bottom:646.560000pt;}
.y71{bottom:648.573333pt;}
.y10b{bottom:654.573333pt;}
.yf4{bottom:661.600000pt;}
.y70{bottom:664.600000pt;}
.yc7{bottom:665.600000pt;}
.y10a{bottom:669.600000pt;}
.yf3{bottom:677.600000pt;}
.y6f{bottom:679.600000pt;}
.yc6{bottom:680.600000pt;}
.y109{bottom:685.600000pt;}
.yf2{bottom:689.600000pt;}
.yc5{bottom:692.600000pt;}
.yd9{bottom:695.000000pt;}
.y6e{bottom:695.600000pt;}
.y108{bottom:700.626667pt;}
.y103{bottom:709.626667pt;}
.y6d{bottom:711.626667pt;}
.y107{bottom:715.626667pt;}
.y9e{bottom:726.626667pt;}
.y6c{bottom:728.626667pt;}
.y106{bottom:731.626667pt;}
.y9d{bottom:741.666667pt;}
.y6b{bottom:744.666667pt;}
.y105{bottom:746.666667pt;}
.y9c{bottom:757.666667pt;}
.y6a{bottom:760.666667pt;}
.y104{bottom:761.666667pt;}
.y9a{bottom:769.666667pt;}
.y18{bottom:772.706667pt;}
.y69{bottom:777.706667pt;}
.y99{bottom:785.706667pt;}
.y68{bottom:792.706667pt;}
.yf{bottom:799.706667pt;}
.y97{bottom:801.693333pt;}
.y67{bottom:807.706667pt;}
.y96{bottom:817.733333pt;}
.y66{bottom:823.733333pt;}
.y95{bottom:833.733333pt;}
.y65{bottom:838.733333pt;}
.y64{bottom:853.773333pt;}
.y94{bottom:868.773333pt;}
.y63{bottom:869.773333pt;}
.ybc{bottom:881.773333pt;}
.y62{bottom:884.800000pt;}
.y101{bottom:896.800000pt;}
.y61{bottom:899.800000pt;}
.y60{bottom:915.800000pt;}
.ybb{bottom:929.840000pt;}
.y5f{bottom:930.840000pt;}
.y5e{bottom:945.840000pt;}
.yd{bottom:949.840000pt;}
.yb9{bottom:960.866667pt;}
.y5d{bottom:961.866667pt;}
.y6{bottom:972.866667pt;}
.y5c{bottom:976.866667pt;}
.y5b{bottom:991.866667pt;}
.yb6{bottom:992.866667pt;}
.y5a{bottom:1007.893333pt;}
.y59{bottom:1022.893333pt;}
.yb4{bottom:1023.893333pt;}
.y58{bottom:1037.933333pt;}
.y57{bottom:1053.933333pt;}
.y56{bottom:1068.960000pt;}
.h30{height:14.000000pt;}
.h2a{height:15.000000pt;}
.h29{height:15.033333pt;}
.h1f{height:15.986667pt;}
.h1e{height:16.000000pt;}
.h1d{height:16.033333pt;}
.h2b{height:17.000000pt;}
.h2f{height:17.033333pt;}
.h31{height:18.000000pt;}
.h32{height:20.000000pt;}
.hb{height:23.033333pt;}
.h1b{height:26.033333pt;}
.h12{height:26.986667pt;}
.h2{height:29.000000pt;}
.h11{height:29.976562pt;}
.h28{height:30.000000pt;}
.h25{height:30.033333pt;}
.h26{height:31.000000pt;}
.h24{height:31.033333pt;}
.h8{height:33.000000pt;}
.h19{height:36.308594pt;}
.h1a{height:36.689453pt;}
.h17{height:36.791016pt;}
.h1c{height:37.857422pt;}
.hd{height:38.289062pt;}
.h18{height:38.478516pt;}
.ha{height:39.000000pt;}
.h4{height:41.976562pt;}
.h15{height:43.763672pt;}
.h16{height:45.474609pt;}
.h27{height:47.066667pt;}
.h22{height:47.742188pt;}
.h21{height:47.874805pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.hf{height:51.720703pt;}
.h10{height:53.244141pt;}
.he{height:57.100000pt;}
.h5{height:61.435547pt;}
.h6{height:63.656250pt;}
.h13{height:65.531250pt;}
.h2e{height:75.591797pt;}
.h23{height:75.724414pt;}
.h7{height:108.100000pt;}
.hc{height:150.120000pt;}
.h2d{height:288.000000pt;}
.h20{height:322.000000pt;}
.h2c{height:340.000000pt;}
.h14{height:444.386667pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w1a{width:24.033333pt;}
.w19{width:28.033333pt;}
.w1b{width:30.033333pt;}
.w18{width:47.066667pt;}
.w2{width:65.100000pt;}
.w15{width:104.133333pt;}
.w14{width:107.133333pt;}
.wd{width:111.133333pt;}
.w11{width:127.166667pt;}
.w12{width:129.166667pt;}
.w4{width:135.160000pt;}
.w10{width:136.160000pt;}
.wf{width:196.266667pt;}
.w7{width:199.240000pt;}
.wa{width:214.266667pt;}
.wb{width:214.306667pt;}
.w9{width:218.266667pt;}
.w13{width:219.266667pt;}
.we{width:341.440000pt;}
.w8{width:451.600000pt;}
.w5{width:515.666667pt;}
.wc{width:531.000000pt;}
.w17{width:543.000000pt;}
.w16{width:551.000000pt;}
.w1{width:585.733333pt;}
.w6{width:650.840000pt;}
.w3{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.000000pt;}
.x2{left:8.000000pt;}
.x61{left:9.026667pt;}
.x5f{left:10.000000pt;}
.x13{left:11.026667pt;}
.x28{left:13.000000pt;}
.x5c{left:18.026667pt;}
.x5a{left:19.026667pt;}
.x25{left:22.600000pt;}
.x49{left:27.093333pt;}
.x2d{left:29.033333pt;}
.x2e{left:39.033333pt;}
.x4e{left:44.133333pt;}
.x43{left:47.066667pt;}
.x2c{left:48.066667pt;}
.x47{left:50.053333pt;}
.x2b{left:52.066667pt;}
.x39{left:56.066667pt;}
.x30{left:57.066667pt;}
.x34{left:60.066667pt;}
.x3d{left:61.066667pt;}
.x1c{left:64.093333pt;}
.x10{left:65.060000pt;}
.x26{left:70.240000pt;}
.x1{left:72.100000pt;}
.x18{left:73.100000pt;}
.x1a{left:86.133333pt;}
.x5{left:87.100000pt;}
.x19{left:88.100000pt;}
.x50{left:91.306667pt;}
.x4b{left:92.240000pt;}
.x1e{left:94.120000pt;}
.x14{left:96.133322pt;}
.x1d{left:99.133333pt;}
.xe{left:102.140000pt;}
.x1f{left:103.133333pt;}
.x20{left:105.140000pt;}
.xf{left:108.140000pt;}
.xd{left:112.140000pt;}
.xc{left:114.140000pt;}
.x4f{left:116.266667pt;}
.x48{left:120.000000pt;}
.x4d{left:124.000000pt;}
.x24{left:130.000000pt;}
.x4a{left:140.360000pt;}
.x54{left:176.573333pt;}
.x57{left:179.239988pt;}
.x29{left:184.240000pt;}
.x51{left:186.133333pt;}
.x11{left:190.233333pt;}
.x38{left:203.266667pt;}
.x6{left:207.266667pt;}
.x3e{left:209.266655pt;}
.x2f{left:210.266667pt;}
.x41{left:212.266655pt;}
.x27{left:225.800000pt;}
.x55{left:233.333333pt;}
.x4c{left:237.333333pt;}
.x9{left:243.293333pt;}
.x21{left:252.333322pt;}
.x23{left:255.333322pt;}
.x35{left:259.333322pt;}
.x16{left:260.333322pt;}
.x37{left:262.333322pt;}
.x12{left:271.333333pt;}
.x53{left:278.026667pt;}
.x7{left:292.373333pt;}
.x42{left:293.373333pt;}
.x52{left:299.466667pt;}
.x8{left:309.400000pt;}
.xb{left:324.406667pt;}
.x17{left:325.399988pt;}
.x3a{left:332.440000pt;}
.x31{left:338.440000pt;}
.x5d{left:343.440000pt;}
.x5b{left:345.440000pt;}
.x5e{left:353.466667pt;}
.xa{left:388.493333pt;}
.x40{left:395.506655pt;}
.x15{left:397.506655pt;}
.x44{left:401.506667pt;}
.x3b{left:462.600000pt;}
.x32{left:466.600000pt;}
.x62{left:478.600000pt;}
.x1b{left:507.640000pt;}
.x45{left:509.666667pt;}
.x56{left:523.666655pt;}
.x2a{left:525.666667pt;}
.x3c{left:592.773333pt;}
.x33{left:594.773333pt;}
.x59{left:604.773333pt;}
.x60{left:609.773333pt;}
.x46{left:617.800000pt;}
.x58{left:654.839988pt;}
.x3{left:657.840000pt;}
.x22{left:663.839988pt;}
.x3f{left:669.866655pt;}
.x36{left:673.866655pt;}
}




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