
    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_b3d0028861db6466956d22be.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_8e939fcac09c584288543fdb.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_e7f62f9c65b1263e71cbfb51.woff')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_dd9b830069bd0a519377d95c.woff')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_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_014c7e9aad8360bf67fa4078.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_e28ea8b608fba66ac762a553.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_b88296eebf9377d0fd14dc71.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_b43373a21d3b7caa7b5adc03.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_04ea8c951b04b1509e066b8b.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_42d08dad5a2e2be226a492c3.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_5cecf524bf7004bf5c7dd36e.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_9d528ec8aae531ae46bebdf0.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_95adf8792f3fc8ba6dc3ffd0.woff')format("woff");}.fff{font-family:fff;line-height:1.112305;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_8ef6506f34dc769ed896a9a4.woff')format("woff");}.ff10{font-family:ff10;line-height:1.112305;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_37ffc9b901776ae6b6290bdd.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_71e2a7eed198bb05ef485e4e.woff')format("woff");}.ff12{font-family:ff12;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;}
.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.150000px;}
.v2{vertical-align:-13.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.ls11{letter-spacing:-4.242000px;}
.ls8{letter-spacing:-2.724000px;}
.ls12{letter-spacing:-2.238000px;}
.ls1e{letter-spacing:-1.482000px;}
.ls19{letter-spacing:-1.128000px;}
.lsf{letter-spacing:-1.026000px;}
.ls9{letter-spacing:-0.792000px;}
.lsb{letter-spacing:-0.780000px;}
.ls7{letter-spacing:-0.378000px;}
.ls6{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.042000px;}
.ls16{letter-spacing:0.102000px;}
.ls15{letter-spacing:0.162000px;}
.ls10{letter-spacing:0.256200px;}
.lse{letter-spacing:0.256500px;}
.lsa{letter-spacing:0.690000px;}
.lsd{letter-spacing:1.026000px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:1.596000px;}
.ls2{letter-spacing:1.854000px;}
.ls3{letter-spacing:1.966500px;}
.lsc{letter-spacing:2.164500px;}
.ls18{letter-spacing:2.190000px;}
.ls4{letter-spacing:2.250000px;}
.ls1a{letter-spacing:2.310000px;}
.ls14{letter-spacing:2.370000px;}
.ls17{letter-spacing:2.430000px;}
.ls5{letter-spacing:4.779000px;}
.ls1c{letter-spacing:25.845000px;}
.ls1d{letter-spacing:30.345000px;}
.ls1b{letter-spacing:57.345000px;}
.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;}
}
.ws6{word-spacing:-16.875000px;}
.wsa{word-spacing:-16.789500px;}
.ws3{word-spacing:-16.146000px;}
.ws2{word-spacing:-15.354000px;}
.ws5{word-spacing:-14.625000px;}
.ws9{word-spacing:-13.599000px;}
.wsd{word-spacing:-13.497000px;}
.ws7{word-spacing:-13.221000px;}
.wse{word-spacing:-13.143000px;}
.ws1{word-spacing:-12.531000px;}
.ws0{word-spacing:-11.826000px;}
.wsb{word-spacing:-10.125000px;}
.ws4{word-spacing:-8.136000px;}
.wsc{word-spacing:-7.887000px;}
.ws8{word-spacing:0.000000px;}
._15{margin-left:-8.527500px;}
._14{margin-left:-6.585000px;}
._a{margin-left:-5.454000px;}
._8{margin-left:-3.991500px;}
._2{margin-left:-2.268000px;}
._1{margin-left:-1.188000px;}
._0{width:1.944000px;}
._3{width:3.054000px;}
._4{width:4.122000px;}
._6{width:5.394000px;}
._5{width:6.588000px;}
._b{width:8.125500px;}
._9{width:9.366000px;}
._7{width:10.812000px;}
._10{width:12.601500px;}
._d{width:16.308000px;}
._e{width:17.595000px;}
._16{width:19.042500px;}
._c{width:20.934000px;}
._f{width:22.221000px;}
._13{width:26.185500px;}
._18{width:29.380500px;}
._19{width:30.384000px;}
._17{width:34.699500px;}
._12{width:53.653500px;}
._11{width:56.680500px;}
._1a{width:157.369500px;}
._1b{width:159.855000px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc6{color:rgb(51,51,51);}
.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;}
.fs4{font-size:58.500000px;}
.fs1{font-size:67.500000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:85.650000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.375000px;}
.ybe{bottom:3.390000px;}
.y9b{bottom:3.405000px;}
.yd0{bottom:3.420000px;}
.ya6{bottom:4.485000px;}
.ybb{bottom:4.500000px;}
.yaa{bottom:4.530000px;}
.y8f{bottom:4.545000px;}
.ybf{bottom:7.875000px;}
.y96{bottom:7.912500px;}
.yd1{bottom:7.920000px;}
.y4b{bottom:10.125000px;}
.ye{bottom:11.250000px;}
.y19{bottom:12.375000px;}
.ye6{bottom:12.405000px;}
.y95{bottom:12.412500px;}
.y8c{bottom:12.420000px;}
.yc{bottom:13.500000px;}
.ya8{bottom:16.860000px;}
.y4{bottom:16.912500px;}
.y2{bottom:19.162500px;}
.yb5{bottom:20.250000px;}
.y9a{bottom:20.280000px;}
.y94{bottom:20.287500px;}
.yd6{bottom:20.295000px;}
.ya5{bottom:21.360000px;}
.y48{bottom:21.375000px;}
.ye0{bottom:21.390000px;}
.yba{bottom:21.405000px;}
.y8d{bottom:21.420000px;}
.y17{bottom:23.625000px;}
.y4a{bottom:24.795000px;}
.yef{bottom:28.170000px;}
.y9e{bottom:29.250000px;}
.yb6{bottom:29.265000px;}
.ya0{bottom:29.280000px;}
.yec{bottom:29.287500px;}
.yb7{bottom:29.295000px;}
.yb{bottom:30.375000px;}
.ya7{bottom:30.405000px;}
.y8b{bottom:30.420000px;}
.y16{bottom:36.000000px;}
.yed{bottom:37.162500px;}
.yb4{bottom:37.170000px;}
.yfe{bottom:38.250000px;}
.y47{bottom:38.280000px;}
.y91{bottom:38.287500px;}
.y8e{bottom:38.295000px;}
.y100{bottom:42.780000px;}
.yf3{bottom:42.795000px;}
.y5{bottom:45.037500px;}
.ya{bottom:46.155000px;}
.yff{bottom:47.295000px;}
.yf1{bottom:47.325000px;}
.yc9{bottom:50.662500px;}
.ydb{bottom:50.670000px;}
.ybc{bottom:51.780000px;}
.ya3{bottom:51.795000px;}
.yb0{bottom:51.825000px;}
.y46{bottom:55.155000px;}
.yc7{bottom:55.162500px;}
.yd9{bottom:55.170000px;}
.y99{bottom:55.200000px;}
.yb9{bottom:56.295000px;}
.yce{bottom:56.325000px;}
.y15{bottom:60.780000px;}
.yea{bottom:64.155000px;}
.yc8{bottom:64.162500px;}
.yda{bottom:64.170000px;}
.ya2{bottom:64.200000px;}
.yfc{bottom:65.280000px;}
.y1{bottom:68.662500px;}
.yc6{bottom:72.037500px;}
.y98{bottom:72.075000px;}
.yfa{bottom:72.090000px;}
.y9{bottom:73.155000px;}
.ydf{bottom:73.170000px;}
.y45{bottom:73.200000px;}
.y14{bottom:75.405000px;}
.yd4{bottom:82.185000px;}
.yac{bottom:82.200000px;}
.yc2{bottom:82.207500px;}
.ye9{bottom:90.060000px;}
.y44{bottom:90.075000px;}
.yc5{bottom:90.082500px;}
.yf9{bottom:90.090000px;}
.yf2{bottom:90.105000px;}
.ye4{bottom:91.185000px;}
.y8{bottom:93.450000px;}
.y13{bottom:94.575000px;}
.ye8{bottom:106.935000px;}
.y43{bottom:106.950000px;}
.yc4{bottom:106.957500px;}
.yf8{bottom:106.965000px;}
.yaf{bottom:106.980000px;}
.ya1{bottom:106.995000px;}
.yb8{bottom:108.105000px;}
.ycd{bottom:108.120000px;}
.y7{bottom:110.325000px;}
.y90{bottom:111.450000px;}
.y129{bottom:112.575000px;}
.y53{bottom:114.825000px;}
.y132{bottom:118.237500px;}
.y12{bottom:120.450000px;}
.yc1{bottom:122.737500px;}
.yb2{bottom:124.980000px;}
.y42{bottom:124.995000px;}
.y128{bottom:129.487500px;}
.y52{bottom:132.862500px;}
.y131{bottom:136.237500px;}
.yeb{bottom:140.737500px;}
.y41{bottom:141.870000px;}
.y11{bottom:146.355000px;}
.y93{bottom:146.362500px;}
.y109{bottom:147.487500px;}
.y51{bottom:149.737500px;}
.y130{bottom:153.105000px;}
.y40{bottom:158.775000px;}
.y108{bottom:161.025000px;}
.y92{bottom:164.400000px;}
.y50{bottom:166.650000px;}
.y10f{bottom:167.775000px;}
.y12f{bottom:170.025000px;}
.y10{bottom:171.150000px;}
.y3f{bottom:176.775000px;}
.y10e{bottom:181.275000px;}
.y2c{bottom:184.650000px;}
.y12e{bottom:188.025000px;}
.y3e{bottom:193.650000px;}
.y8a{bottom:199.275000px;}
.y2b{bottom:199.305000px;}
.y4f{bottom:201.570000px;}
.y12d{bottom:204.945000px;}
.ye3{bottom:209.445000px;}
.y3d{bottom:210.570000px;}
.y127{bottom:216.195000px;}
.y2a{bottom:218.445000px;}
.y12c{bottom:221.820000px;}
.y3c{bottom:228.570000px;}
.y126{bottom:233.070000px;}
.y29{bottom:235.320000px;}
.y4e{bottom:236.445000px;}
.y12b{bottom:239.820000px;}
.yc3{bottom:244.350000px;}
.y3b{bottom:245.475000px;}
.y125{bottom:251.100000px;}
.y28{bottom:252.225000px;}
.y4d{bottom:253.350000px;}
.y12a{bottom:256.725000px;}
.y3a{bottom:262.350000px;}
.y124{bottom:267.975000px;}
.y27{bottom:270.225000px;}
.y89{bottom:273.600000px;}
.y39{bottom:280.395000px;}
.y123{bottom:284.895000px;}
.y26{bottom:287.145000px;}
.y4c{bottom:288.270000px;}
.y88{bottom:291.645000px;}
.yc0{bottom:297.255000px;}
.y38{bottom:297.270000px;}
.y49{bottom:302.880000px;}
.y25{bottom:305.145000px;}
.y87{bottom:308.520000px;}
.y37{bottom:314.145000px;}
.ybd{bottom:315.255000px;}
.y122{bottom:319.755000px;}
.y24{bottom:322.050000px;}
.y86{bottom:325.395000px;}
.ye7{bottom:331.050000px;}
.y36{bottom:332.175000px;}
.y121{bottom:336.675000px;}
.y1a{bottom:338.925000px;}
.y23{bottom:340.050000px;}
.y85{bottom:343.425000px;}
.y35{bottom:349.050000px;}
.yb1{bottom:350.175000px;}
.y120{bottom:354.675000px;}
.y22{bottom:356.925000px;}
.y84{bottom:360.300000px;}
.ye5{bottom:365.925000px;}
.y34{bottom:365.955000px;}
.y11f{bottom:371.580000px;}
.y21{bottom:374.955000px;}
.y83{bottom:377.205000px;}
.y33{bottom:383.970000px;}
.y11e{bottom:388.455000px;}
.y20{bottom:391.830000px;}
.y82{bottom:395.205000px;}
.y32{bottom:400.845000px;}
.ye2{bottom:401.955000px;}
.y11d{bottom:406.470000px;}
.y1f{bottom:409.875000px;}
.y81{bottom:412.125000px;}
.y31{bottom:417.750000px;}
.ye1{bottom:420.000000px;}
.y11c{bottom:423.375000px;}
.y1e{bottom:426.750000px;}
.y80{bottom:429.000000px;}
.y30{bottom:435.750000px;}
.y11b{bottom:440.250000px;}
.y1d{bottom:443.625000px;}
.y7f{bottom:447.000000px;}
.y2f{bottom:452.655000px;}
.ydc{bottom:454.905000px;}
.y11a{bottom:458.280000px;}
.y7e{bottom:463.920000px;}
.y2e{bottom:469.530000px;}
.y1c{bottom:471.780000px;}
.y119{bottom:475.155000px;}
.y7d{bottom:480.795000px;}
.y2d{bottom:487.530000px;}
.y1b{bottom:489.825000px;}
.y107{bottom:490.920000px;}
.y118{bottom:492.030000px;}
.y7c{bottom:498.825000px;}
.y106{bottom:508.950000px;}
.y117{bottom:510.075000px;}
.y7b{bottom:515.700000px;}
.y105{bottom:525.825000px;}
.y116{bottom:526.950000px;}
.y10d{bottom:530.325000px;}
.y7a{bottom:532.575000px;}
.yb3{bottom:541.605000px;}
.y104{bottom:542.745000px;}
.y10c{bottom:543.870000px;}
.y79{bottom:550.620000px;}
.y103{bottom:560.745000px;}
.y115{bottom:561.855000px;}
.y78{bottom:567.495000px;}
.y102{bottom:574.230000px;}
.yde{bottom:576.480000px;}
.y114{bottom:578.775000px;}
.y77{bottom:584.400000px;}
.y113{bottom:595.650000px;}
.y76{bottom:602.400000px;}
.yab{bottom:610.275000px;}
.y112{bottom:613.650000px;}
.y75{bottom:619.320000px;}
.y101{bottom:627.195000px;}
.y74{bottom:636.195000px;}
.ydd{bottom:645.195000px;}
.y73{bottom:654.195000px;}
.yfb{bottom:662.100000px;}
.y72{bottom:671.100000px;}
.y71{bottom:687.975000px;}
.y70{bottom:706.020000px;}
.yd8{bottom:715.005000px;}
.yd3{bottom:715.020000px;}
.y6f{bottom:722.895000px;}
.yae{bottom:731.880000px;}
.y6e{bottom:739.770000px;}
.yad{bottom:749.925000px;}
.y6d{bottom:757.800000px;}
.yfd{bottom:766.800000px;}
.y6c{bottom:774.675000px;}
.ya9{bottom:784.800000px;}
.y6b{bottom:791.580000px;}
.yf7{bottom:802.830000px;}
.ya4{bottom:802.845000px;}
.y6a{bottom:809.580000px;}
.y69{bottom:826.455000px;}
.yd7{bottom:836.625000px;}
.y18{bottom:840.000000px;}
.y68{bottom:843.375000px;}
.yd5{bottom:854.625000px;}
.y9c{bottom:855.750000px;}
.y67{bottom:861.375000px;}
.yf{bottom:869.295000px;}
.y66{bottom:878.295000px;}
.y10b{bottom:880.545000px;}
.yd2{bottom:889.545000px;}
.y10a{bottom:894.045000px;}
.y65{bottom:895.170000px;}
.ycf{bottom:907.530000px;}
.y64{bottom:913.200000px;}
.y111{bottom:921.075000px;}
.yf6{bottom:924.450000px;}
.y63{bottom:930.075000px;}
.y110{bottom:934.575000px;}
.yca{bottom:942.450000px;}
.y62{bottom:946.950000px;}
.y61{bottom:964.995000px;}
.yf5{bottom:977.355000px;}
.y9f{bottom:977.370000px;}
.y60{bottom:981.870000px;}
.yf4{bottom:995.400000px;}
.y5f{bottom:998.775000px;}
.y5e{bottom:1016.775000px;}
.yf0{bottom:1030.275000px;}
.y5d{bottom:1033.650000px;}
.y9d{bottom:1046.070000px;}
.y5c{bottom:1050.570000px;}
.yd{bottom:1055.070000px;}
.ycc{bottom:1064.070000px;}
.y5b{bottom:1068.570000px;}
.y6{bottom:1080.975000px;}
.y5a{bottom:1085.475000px;}
.y59{bottom:1102.350000px;}
.y97{bottom:1115.850000px;}
.y58{bottom:1120.380000px;}
.ycb{bottom:1133.880000px;}
.yee{bottom:1135.005000px;}
.y57{bottom:1137.255000px;}
.y56{bottom:1154.130000px;}
.y55{bottom:1172.175000px;}
.y54{bottom:1189.050000px;}
.h31{height:16.860000px;}
.h1c{height:16.875000px;}
.h20{height:16.912500px;}
.h2b{height:18.037500px;}
.hb{height:25.912500px;}
.h12{height:29.287500px;}
.h11{height:29.953125px;}
.h2{height:32.662500px;}
.h21{height:33.787500px;}
.h1f{height:34.875000px;}
.h2f{height:34.912500px;}
.h1a{height:36.037500px;}
.h23{height:36.307617px;}
.h8{height:37.125000px;}
.h18{height:39.832031px;}
.h1b{height:41.275635px;}
.h17{height:41.389893px;}
.hd{height:43.075195px;}
.ha{height:43.875000px;}
.h16{height:47.074219px;}
.h15{height:49.234131px;}
.h29{height:51.772500px;}
.h1d{height:51.825000px;}
.h19{height:52.444336px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h3b{height:54.247617px;}
.h22{height:54.307617px;}
.h2e{height:54.427617px;}
.h2a{height:54.487617px;}
.h3{height:55.291992px;}
.hf{height:58.185791px;}
.h10{height:59.899658px;}
.he{height:64.237500px;}
.h37{height:66.412500px;}
.h2d{height:67.537500px;}
.h36{height:67.575000px;}
.h26{height:68.647500px;}
.h33{height:68.685000px;}
.h27{height:68.700000px;}
.h5{height:69.114990px;}
.h6{height:71.613281px;}
.h13{height:73.722656px;}
.h24{height:85.575000px;}
.h1e{height:87.825000px;}
.h3a{height:103.575000px;}
.h38{height:103.612500px;}
.h34{height:120.450000px;}
.h28{height:120.487500px;}
.h7{height:121.612500px;}
.h39{height:139.612500px;}
.h32{height:173.385000px;}
.h30{height:173.400000px;}
.h2c{height:174.525000px;}
.hc{height:185.760000px;}
.h35{height:191.400000px;}
.h25{height:258.975000px;}
.h14{height:501.075000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.wa{width:47.325000px;}
.w9{width:51.787500px;}
.wd{width:51.825000px;}
.w12{width:52.950000px;}
.wf{width:56.325000px;}
.w11{width:57.450000px;}
.wc{width:60.825000px;}
.wb{width:61.950000px;}
.we{width:65.325000px;}
.w2{width:74.362500px;}
.w10{width:104.737500px;}
.w4{width:152.055000px;}
.w7{width:223.020000px;}
.w8{width:524.925000px;}
.w5{width:595.875000px;}
.w1{width:674.745000px;}
.w6{width:747.945000px;}
.w3{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:6.750000px;}
.x8{left:7.875000px;}
.x2{left:9.037500px;}
.x16{left:12.420000px;}
.xf{left:33.787500px;}
.xe{left:46.162500px;}
.x1{left:72.075000px;}
.x5{left:73.237500px;}
.x4{left:81.112487px;}
.x6{left:97.987500px;}
.x12{left:117.142500px;}
.x31{left:123.899987px;}
.x17{left:125.025000px;}
.x32{left:153.179987px;}
.x18{left:173.475000px;}
.x24{left:177.975000px;}
.x11{left:201.607500px;}
.x14{left:214.012500px;}
.x7{left:225.300000px;}
.x13{left:230.887500px;}
.x19{left:235.425000px;}
.x25{left:239.925000px;}
.xb{left:290.625000px;}
.x15{left:296.250000px;}
.x1a{left:297.375000px;}
.x10{left:321.007500px;}
.x9{left:345.780000px;}
.x1b{left:350.325000px;}
.x26{left:354.825000px;}
.xa{left:364.950000px;}
.xd{left:373.957500px;}
.x1d{left:412.275000px;}
.x27{left:416.775000px;}
.x2e{left:447.194987px;}
.xc{left:453.945000px;}
.x1e{left:477.600000px;}
.x28{left:482.100000px;}
.x1f{left:540.675000px;}
.x20{left:598.125000px;}
.x29{left:655.575000px;}
.x21{left:660.075000px;}
.x2a{left:711.900000px;}
.x22{left:716.400000px;}
.x2b{left:725.444987px;}
.x30{left:727.694987px;}
.x2d{left:728.819987px;}
.x2f{left:729.944987px;}
.x2c{left:731.069987px;}
.x3{left:746.820000px;}
.x23{left:769.350000px;}
@media print{
.v3{vertical-align:-16.133333pt;}
.v2{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls11{letter-spacing:-3.770667pt;}
.ls8{letter-spacing:-2.421333pt;}
.ls12{letter-spacing:-1.989333pt;}
.ls1e{letter-spacing:-1.317333pt;}
.ls19{letter-spacing:-1.002667pt;}
.lsf{letter-spacing:-0.912000pt;}
.ls9{letter-spacing:-0.704000pt;}
.lsb{letter-spacing:-0.693333pt;}
.ls7{letter-spacing:-0.336000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.037333pt;}
.ls16{letter-spacing:0.090667pt;}
.ls15{letter-spacing:0.144000pt;}
.ls10{letter-spacing:0.227733pt;}
.lse{letter-spacing:0.228000pt;}
.lsa{letter-spacing:0.613333pt;}
.lsd{letter-spacing:0.912000pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.418667pt;}
.ls2{letter-spacing:1.648000pt;}
.ls3{letter-spacing:1.748000pt;}
.lsc{letter-spacing:1.924000pt;}
.ls18{letter-spacing:1.946667pt;}
.ls4{letter-spacing:2.000000pt;}
.ls1a{letter-spacing:2.053333pt;}
.ls14{letter-spacing:2.106667pt;}
.ls17{letter-spacing:2.160000pt;}
.ls5{letter-spacing:4.248000pt;}
.ls1c{letter-spacing:22.973333pt;}
.ls1d{letter-spacing:26.973333pt;}
.ls1b{letter-spacing:50.973333pt;}
.ws6{word-spacing:-15.000000pt;}
.wsa{word-spacing:-14.924000pt;}
.ws3{word-spacing:-14.352000pt;}
.ws2{word-spacing:-13.648000pt;}
.ws5{word-spacing:-13.000000pt;}
.ws9{word-spacing:-12.088000pt;}
.wsd{word-spacing:-11.997333pt;}
.ws7{word-spacing:-11.752000pt;}
.wse{word-spacing:-11.682667pt;}
.ws1{word-spacing:-11.138667pt;}
.ws0{word-spacing:-10.512000pt;}
.wsb{word-spacing:-9.000000pt;}
.ws4{word-spacing:-7.232000pt;}
.wsc{word-spacing:-7.010667pt;}
.ws8{word-spacing:0.000000pt;}
._15{margin-left:-7.580000pt;}
._14{margin-left:-5.853333pt;}
._a{margin-left:-4.848000pt;}
._8{margin-left:-3.548000pt;}
._2{margin-left:-2.016000pt;}
._1{margin-left:-1.056000pt;}
._0{width:1.728000pt;}
._3{width:2.714667pt;}
._4{width:3.664000pt;}
._6{width:4.794667pt;}
._5{width:5.856000pt;}
._b{width:7.222667pt;}
._9{width:8.325333pt;}
._7{width:9.610667pt;}
._10{width:11.201333pt;}
._d{width:14.496000pt;}
._e{width:15.640000pt;}
._16{width:16.926667pt;}
._c{width:18.608000pt;}
._f{width:19.752000pt;}
._13{width:23.276000pt;}
._18{width:26.116000pt;}
._19{width:27.008000pt;}
._17{width:30.844000pt;}
._12{width:47.692000pt;}
._11{width:50.382667pt;}
._1a{width:139.884000pt;}
._1b{width:142.093333pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:36.000000pt;}
.fs3{font-size:44.000000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:52.000000pt;}
.fs1{font-size:60.000000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:76.133333pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.000000pt;}
.ybe{bottom:3.013333pt;}
.y9b{bottom:3.026667pt;}
.yd0{bottom:3.040000pt;}
.ya6{bottom:3.986667pt;}
.ybb{bottom:4.000000pt;}
.yaa{bottom:4.026667pt;}
.y8f{bottom:4.040000pt;}
.ybf{bottom:7.000000pt;}
.y96{bottom:7.033333pt;}
.yd1{bottom:7.040000pt;}
.y4b{bottom:9.000000pt;}
.ye{bottom:10.000000pt;}
.y19{bottom:11.000000pt;}
.ye6{bottom:11.026667pt;}
.y95{bottom:11.033333pt;}
.y8c{bottom:11.040000pt;}
.yc{bottom:12.000000pt;}
.ya8{bottom:14.986667pt;}
.y4{bottom:15.033333pt;}
.y2{bottom:17.033333pt;}
.yb5{bottom:18.000000pt;}
.y9a{bottom:18.026667pt;}
.y94{bottom:18.033333pt;}
.yd6{bottom:18.040000pt;}
.ya5{bottom:18.986667pt;}
.y48{bottom:19.000000pt;}
.ye0{bottom:19.013333pt;}
.yba{bottom:19.026667pt;}
.y8d{bottom:19.040000pt;}
.y17{bottom:21.000000pt;}
.y4a{bottom:22.040000pt;}
.yef{bottom:25.040000pt;}
.y9e{bottom:26.000000pt;}
.yb6{bottom:26.013333pt;}
.ya0{bottom:26.026667pt;}
.yec{bottom:26.033333pt;}
.yb7{bottom:26.040000pt;}
.yb{bottom:27.000000pt;}
.ya7{bottom:27.026667pt;}
.y8b{bottom:27.040000pt;}
.y16{bottom:32.000000pt;}
.yed{bottom:33.033333pt;}
.yb4{bottom:33.040000pt;}
.yfe{bottom:34.000000pt;}
.y47{bottom:34.026667pt;}
.y91{bottom:34.033333pt;}
.y8e{bottom:34.040000pt;}
.y100{bottom:38.026667pt;}
.yf3{bottom:38.040000pt;}
.y5{bottom:40.033333pt;}
.ya{bottom:41.026667pt;}
.yff{bottom:42.040000pt;}
.yf1{bottom:42.066667pt;}
.yc9{bottom:45.033333pt;}
.ydb{bottom:45.040000pt;}
.ybc{bottom:46.026667pt;}
.ya3{bottom:46.040000pt;}
.yb0{bottom:46.066667pt;}
.y46{bottom:49.026667pt;}
.yc7{bottom:49.033333pt;}
.yd9{bottom:49.040000pt;}
.y99{bottom:49.066667pt;}
.yb9{bottom:50.040000pt;}
.yce{bottom:50.066667pt;}
.y15{bottom:54.026667pt;}
.yea{bottom:57.026667pt;}
.yc8{bottom:57.033333pt;}
.yda{bottom:57.040000pt;}
.ya2{bottom:57.066667pt;}
.yfc{bottom:58.026667pt;}
.y1{bottom:61.033333pt;}
.yc6{bottom:64.033333pt;}
.y98{bottom:64.066667pt;}
.yfa{bottom:64.080000pt;}
.y9{bottom:65.026667pt;}
.ydf{bottom:65.040000pt;}
.y45{bottom:65.066667pt;}
.y14{bottom:67.026667pt;}
.yd4{bottom:73.053333pt;}
.yac{bottom:73.066667pt;}
.yc2{bottom:73.073333pt;}
.ye9{bottom:80.053333pt;}
.y44{bottom:80.066667pt;}
.yc5{bottom:80.073333pt;}
.yf9{bottom:80.080000pt;}
.yf2{bottom:80.093333pt;}
.ye4{bottom:81.053333pt;}
.y8{bottom:83.066667pt;}
.y13{bottom:84.066667pt;}
.ye8{bottom:95.053333pt;}
.y43{bottom:95.066667pt;}
.yc4{bottom:95.073333pt;}
.yf8{bottom:95.080000pt;}
.yaf{bottom:95.093333pt;}
.ya1{bottom:95.106667pt;}
.yb8{bottom:96.093333pt;}
.ycd{bottom:96.106667pt;}
.y7{bottom:98.066667pt;}
.y90{bottom:99.066667pt;}
.y129{bottom:100.066667pt;}
.y53{bottom:102.066667pt;}
.y132{bottom:105.100000pt;}
.y12{bottom:107.066667pt;}
.yc1{bottom:109.100000pt;}
.yb2{bottom:111.093333pt;}
.y42{bottom:111.106667pt;}
.y128{bottom:115.100000pt;}
.y52{bottom:118.100000pt;}
.y131{bottom:121.100000pt;}
.yeb{bottom:125.100000pt;}
.y41{bottom:126.106667pt;}
.y11{bottom:130.093333pt;}
.y93{bottom:130.100000pt;}
.y109{bottom:131.100000pt;}
.y51{bottom:133.100000pt;}
.y130{bottom:136.093333pt;}
.y40{bottom:141.133333pt;}
.y108{bottom:143.133333pt;}
.y92{bottom:146.133333pt;}
.y50{bottom:148.133333pt;}
.y10f{bottom:149.133333pt;}
.y12f{bottom:151.133333pt;}
.y10{bottom:152.133333pt;}
.y3f{bottom:157.133333pt;}
.y10e{bottom:161.133333pt;}
.y2c{bottom:164.133333pt;}
.y12e{bottom:167.133333pt;}
.y3e{bottom:172.133333pt;}
.y8a{bottom:177.133333pt;}
.y2b{bottom:177.160000pt;}
.y4f{bottom:179.173333pt;}
.y12d{bottom:182.173333pt;}
.ye3{bottom:186.173333pt;}
.y3d{bottom:187.173333pt;}
.y127{bottom:192.173333pt;}
.y2a{bottom:194.173333pt;}
.y12c{bottom:197.173333pt;}
.y3c{bottom:203.173333pt;}
.y126{bottom:207.173333pt;}
.y29{bottom:209.173333pt;}
.y4e{bottom:210.173333pt;}
.y12b{bottom:213.173333pt;}
.yc3{bottom:217.200000pt;}
.y3b{bottom:218.200000pt;}
.y125{bottom:223.200000pt;}
.y28{bottom:224.200000pt;}
.y4d{bottom:225.200000pt;}
.y12a{bottom:228.200000pt;}
.y3a{bottom:233.200000pt;}
.y124{bottom:238.200000pt;}
.y27{bottom:240.200000pt;}
.y89{bottom:243.200000pt;}
.y39{bottom:249.240000pt;}
.y123{bottom:253.240000pt;}
.y26{bottom:255.240000pt;}
.y4c{bottom:256.240000pt;}
.y88{bottom:259.240000pt;}
.yc0{bottom:264.226667pt;}
.y38{bottom:264.240000pt;}
.y49{bottom:269.226667pt;}
.y25{bottom:271.240000pt;}
.y87{bottom:274.240000pt;}
.y37{bottom:279.240000pt;}
.ybd{bottom:280.226667pt;}
.y122{bottom:284.226667pt;}
.y24{bottom:286.266667pt;}
.y86{bottom:289.240000pt;}
.ye7{bottom:294.266667pt;}
.y36{bottom:295.266667pt;}
.y121{bottom:299.266667pt;}
.y1a{bottom:301.266667pt;}
.y23{bottom:302.266667pt;}
.y85{bottom:305.266667pt;}
.y35{bottom:310.266667pt;}
.yb1{bottom:311.266667pt;}
.y120{bottom:315.266667pt;}
.y22{bottom:317.266667pt;}
.y84{bottom:320.266667pt;}
.ye5{bottom:325.266667pt;}
.y34{bottom:325.293333pt;}
.y11f{bottom:330.293333pt;}
.y21{bottom:333.293333pt;}
.y83{bottom:335.293333pt;}
.y33{bottom:341.306667pt;}
.y11e{bottom:345.293333pt;}
.y20{bottom:348.293333pt;}
.y82{bottom:351.293333pt;}
.y32{bottom:356.306667pt;}
.ye2{bottom:357.293333pt;}
.y11d{bottom:361.306667pt;}
.y1f{bottom:364.333333pt;}
.y81{bottom:366.333333pt;}
.y31{bottom:371.333333pt;}
.ye1{bottom:373.333333pt;}
.y11c{bottom:376.333333pt;}
.y1e{bottom:379.333333pt;}
.y80{bottom:381.333333pt;}
.y30{bottom:387.333333pt;}
.y11b{bottom:391.333333pt;}
.y1d{bottom:394.333333pt;}
.y7f{bottom:397.333333pt;}
.y2f{bottom:402.360000pt;}
.ydc{bottom:404.360000pt;}
.y11a{bottom:407.360000pt;}
.y7e{bottom:412.373333pt;}
.y2e{bottom:417.360000pt;}
.y1c{bottom:419.360000pt;}
.y119{bottom:422.360000pt;}
.y7d{bottom:427.373333pt;}
.y2d{bottom:433.360000pt;}
.y1b{bottom:435.400000pt;}
.y107{bottom:436.373333pt;}
.y118{bottom:437.360000pt;}
.y7c{bottom:443.400000pt;}
.y106{bottom:452.400000pt;}
.y117{bottom:453.400000pt;}
.y7b{bottom:458.400000pt;}
.y105{bottom:467.400000pt;}
.y116{bottom:468.400000pt;}
.y10d{bottom:471.400000pt;}
.y7a{bottom:473.400000pt;}
.yb3{bottom:481.426667pt;}
.y104{bottom:482.440000pt;}
.y10c{bottom:483.440000pt;}
.y79{bottom:489.440000pt;}
.y103{bottom:498.440000pt;}
.y115{bottom:499.426667pt;}
.y78{bottom:504.440000pt;}
.y102{bottom:510.426667pt;}
.yde{bottom:512.426667pt;}
.y114{bottom:514.466667pt;}
.y77{bottom:519.466667pt;}
.y113{bottom:529.466667pt;}
.y76{bottom:535.466667pt;}
.yab{bottom:542.466667pt;}
.y112{bottom:545.466667pt;}
.y75{bottom:550.506667pt;}
.y101{bottom:557.506667pt;}
.y74{bottom:565.506667pt;}
.ydd{bottom:573.506667pt;}
.y73{bottom:581.506667pt;}
.yfb{bottom:588.533333pt;}
.y72{bottom:596.533333pt;}
.y71{bottom:611.533333pt;}
.y70{bottom:627.573333pt;}
.yd8{bottom:635.560000pt;}
.yd3{bottom:635.573333pt;}
.y6f{bottom:642.573333pt;}
.yae{bottom:650.560000pt;}
.y6e{bottom:657.573333pt;}
.yad{bottom:666.600000pt;}
.y6d{bottom:673.600000pt;}
.yfd{bottom:681.600000pt;}
.y6c{bottom:688.600000pt;}
.ya9{bottom:697.600000pt;}
.y6b{bottom:703.626667pt;}
.yf7{bottom:713.626667pt;}
.ya4{bottom:713.640000pt;}
.y6a{bottom:719.626667pt;}
.y69{bottom:734.626667pt;}
.yd7{bottom:743.666667pt;}
.y18{bottom:746.666667pt;}
.y68{bottom:749.666667pt;}
.yd5{bottom:759.666667pt;}
.y9c{bottom:760.666667pt;}
.y67{bottom:765.666667pt;}
.yf{bottom:772.706667pt;}
.y66{bottom:780.706667pt;}
.y10b{bottom:782.706667pt;}
.yd2{bottom:790.706667pt;}
.y10a{bottom:794.706667pt;}
.y65{bottom:795.706667pt;}
.ycf{bottom:806.693333pt;}
.y64{bottom:811.733333pt;}
.y111{bottom:818.733333pt;}
.yf6{bottom:821.733333pt;}
.y63{bottom:826.733333pt;}
.y110{bottom:830.733333pt;}
.yca{bottom:837.733333pt;}
.y62{bottom:841.733333pt;}
.y61{bottom:857.773333pt;}
.yf5{bottom:868.760000pt;}
.y9f{bottom:868.773333pt;}
.y60{bottom:872.773333pt;}
.yf4{bottom:884.800000pt;}
.y5f{bottom:887.800000pt;}
.y5e{bottom:903.800000pt;}
.yf0{bottom:915.800000pt;}
.y5d{bottom:918.800000pt;}
.y9d{bottom:929.840000pt;}
.y5c{bottom:933.840000pt;}
.yd{bottom:937.840000pt;}
.ycc{bottom:945.840000pt;}
.y5b{bottom:949.840000pt;}
.y6{bottom:960.866667pt;}
.y5a{bottom:964.866667pt;}
.y59{bottom:979.866667pt;}
.y97{bottom:991.866667pt;}
.y58{bottom:995.893333pt;}
.ycb{bottom:1007.893333pt;}
.yee{bottom:1008.893333pt;}
.y57{bottom:1010.893333pt;}
.y56{bottom:1025.893333pt;}
.y55{bottom:1041.933333pt;}
.y54{bottom:1056.933333pt;}
.h31{height:14.986667pt;}
.h1c{height:15.000000pt;}
.h20{height:15.033333pt;}
.h2b{height:16.033333pt;}
.hb{height:23.033333pt;}
.h12{height:26.033333pt;}
.h11{height:26.625000pt;}
.h2{height:29.033333pt;}
.h21{height:30.033333pt;}
.h1f{height:31.000000pt;}
.h2f{height:31.033333pt;}
.h1a{height:32.033333pt;}
.h23{height:32.273438pt;}
.h8{height:33.000000pt;}
.h18{height:35.406250pt;}
.h1b{height:36.689453pt;}
.h17{height:36.791016pt;}
.hd{height:38.289062pt;}
.ha{height:39.000000pt;}
.h16{height:41.843750pt;}
.h15{height:43.763672pt;}
.h29{height:46.020000pt;}
.h1d{height:46.066667pt;}
.h19{height:46.617188pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h3b{height:48.220104pt;}
.h22{height:48.273438pt;}
.h2e{height:48.380104pt;}
.h2a{height:48.433437pt;}
.h3{height:49.148438pt;}
.hf{height:51.720703pt;}
.h10{height:53.244141pt;}
.he{height:57.100000pt;}
.h37{height:59.033333pt;}
.h2d{height:60.033333pt;}
.h36{height:60.066667pt;}
.h26{height:61.020000pt;}
.h33{height:61.053333pt;}
.h27{height:61.066667pt;}
.h5{height:61.435547pt;}
.h6{height:63.656250pt;}
.h13{height:65.531250pt;}
.h24{height:76.066667pt;}
.h1e{height:78.066667pt;}
.h3a{height:92.066667pt;}
.h38{height:92.100000pt;}
.h34{height:107.066667pt;}
.h28{height:107.100000pt;}
.h7{height:108.100000pt;}
.h39{height:124.100000pt;}
.h32{height:154.120000pt;}
.h30{height:154.133333pt;}
.h2c{height:155.133333pt;}
.hc{height:165.120000pt;}
.h35{height:170.133333pt;}
.h25{height:230.200000pt;}
.h14{height:445.400000pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.wa{width:42.066667pt;}
.w9{width:46.033333pt;}
.wd{width:46.066667pt;}
.w12{width:47.066667pt;}
.wf{width:50.066667pt;}
.w11{width:51.066667pt;}
.wc{width:54.066667pt;}
.wb{width:55.066667pt;}
.we{width:58.066667pt;}
.w2{width:66.100000pt;}
.w10{width:93.100000pt;}
.w4{width:135.160000pt;}
.w7{width:198.240000pt;}
.w8{width:466.600000pt;}
.w5{width:529.666667pt;}
.w1{width:599.773333pt;}
.w6{width:664.840000pt;}
.w3{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:6.000000pt;}
.x8{left:7.000000pt;}
.x2{left:8.033333pt;}
.x16{left:11.040000pt;}
.xf{left:30.033333pt;}
.xe{left:41.033333pt;}
.x1{left:64.066667pt;}
.x5{left:65.100000pt;}
.x4{left:72.099988pt;}
.x6{left:87.100000pt;}
.x12{left:104.126667pt;}
.x31{left:110.133322pt;}
.x17{left:111.133333pt;}
.x32{left:136.159988pt;}
.x18{left:154.200000pt;}
.x24{left:158.200000pt;}
.x11{left:179.206667pt;}
.x14{left:190.233333pt;}
.x7{left:200.266667pt;}
.x13{left:205.233333pt;}
.x19{left:209.266667pt;}
.x25{left:213.266667pt;}
.xb{left:258.333333pt;}
.x15{left:263.333333pt;}
.x1a{left:264.333333pt;}
.x10{left:285.340000pt;}
.x9{left:307.360000pt;}
.x1b{left:311.400000pt;}
.x26{left:315.400000pt;}
.xa{left:324.400000pt;}
.xd{left:332.406667pt;}
.x1d{left:366.466667pt;}
.x27{left:370.466667pt;}
.x2e{left:397.506655pt;}
.xc{left:403.506667pt;}
.x1e{left:424.533333pt;}
.x28{left:428.533333pt;}
.x1f{left:480.600000pt;}
.x20{left:531.666667pt;}
.x29{left:582.733333pt;}
.x21{left:586.733333pt;}
.x2a{left:632.800000pt;}
.x22{left:636.800000pt;}
.x2b{left:644.839988pt;}
.x30{left:646.839988pt;}
.x2d{left:647.839988pt;}
.x2f{left:648.839988pt;}
.x2c{left:649.839988pt;}
.x3{left:663.840000pt;}
.x23{left:683.866667pt;}
}




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