
    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_962a0140c73b026559445460.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_cbb3b45d9d367c651ece36c4.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_36732c9550dc0326d999e6ea.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_66ba0e4a093ec7eb2619dae1.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_5aef35cf8de9d8c34d268920.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_b434c27c6a744346a4dfdde9.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_a5e5531227191f7707a79218.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_db1f7686b5ce9f90c737b6fe.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_48ab6f9d29ac7b21759c6000.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_363cd4ee4a8645397a8accb0.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_2f572cd19ddca3284439162f.woff')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_228d946c236d8ba5edbf4f53.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_daa5082bf0ac242327730933.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_cebdcbccbce70015ba63d995.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff13{font-family:ff13;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.620000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.ls9{letter-spacing:-2.724000px;}
.ls14{letter-spacing:-2.250000px;}
.ls15{letter-spacing:-1.740000px;}
.lsc{letter-spacing:-1.596000px;}
.lsd{letter-spacing:-1.482000px;}
.ls1d{letter-spacing:-1.128000px;}
.ls13{letter-spacing:-1.026000px;}
.lsa{letter-spacing:-0.792000px;}
.lse{letter-spacing:-0.780000px;}
.ls8{letter-spacing:-0.378000px;}
.ls7{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.099000px;}
.lsb{letter-spacing:0.690000px;}
.ls17{letter-spacing:0.769500px;}
.ls19{letter-spacing:0.889500px;}
.ls1a{letter-spacing:0.949500px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:1.476000px;}
.ls10{letter-spacing:1.740000px;}
.ls2{letter-spacing:1.854000px;}
.ls3{letter-spacing:1.966500px;}
.ls16{letter-spacing:2.164500px;}
.ls12{letter-spacing:2.190000px;}
.ls4{letter-spacing:2.250000px;}
.ls1b{letter-spacing:2.310000px;}
.ls11{letter-spacing:2.370000px;}
.ls18{letter-spacing:2.430000px;}
.ls5{letter-spacing:4.779000px;}
.ls1c{letter-spacing:15.387000px;}
.lsf{letter-spacing:46.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;}
.wsc{word-spacing:-16.789500px;}
.ws3{word-spacing:-16.146000px;}
.ws2{word-spacing:-15.354000px;}
.ws6{word-spacing:-14.625000px;}
.ws9{word-spacing:-13.599000px;}
.ws7{word-spacing:-13.221000px;}
.wsb{word-spacing:-12.885000px;}
.ws1{word-spacing:-12.531000px;}
.wsa{word-spacing:-12.375000px;}
.ws0{word-spacing:-11.826000px;}
.ws4{word-spacing:-8.136000px;}
.ws8{word-spacing:0.000000px;}
._6{margin-left:-8.131500px;}
._13{margin-left:-6.958500px;}
._14{margin-left:-5.095500px;}
._a{margin-left:-3.694500px;}
._2{margin-left:-2.376000px;}
._1{margin-left:-1.188000px;}
._0{width:1.944000px;}
._3{width:3.192000px;}
._4{width:4.836000px;}
._9{width:6.786000px;}
._8{width:8.401500px;}
._7{width:9.513000px;}
._5{width:10.890000px;}
._d{width:12.525000px;}
._12{width:16.035000px;}
._11{width:17.745000px;}
._15{width:18.876000px;}
._1e{width:19.920000px;}
._10{width:21.291000px;}
._f{width:24.840000px;}
._e{width:26.635500px;}
._1d{width:28.608000px;}
._c{width:29.725500px;}
._b{width:31.078500px;}
._19{width:38.443500px;}
._18{width:39.843000px;}
._1c{width:43.762500px;}
._1b{width:70.713000px;}
._17{width:74.938500px;}
._1a{width:76.290000px;}
._16{width:80.562000px;}
.fc5{color:rgb(227,108,10);}
.fc6{color:rgb(47,84,150);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.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;}
.y3b{bottom:3.390000px;}
.y97{bottom:3.405000px;}
.ydc{bottom:3.420000px;}
.y1a{bottom:4.500000px;}
.yc5{bottom:4.515000px;}
.yc8{bottom:4.530000px;}
.ya8{bottom:4.545000px;}
.ye{bottom:11.250000px;}
.yd8{bottom:12.375000px;}
.y118{bottom:12.390000px;}
.y125{bottom:12.405000px;}
.ye7{bottom:12.420000px;}
.yc{bottom:13.530000px;}
.y109{bottom:13.545000px;}
.y4{bottom:16.912500px;}
.y2{bottom:19.162500px;}
.ye1{bottom:20.250000px;}
.y11f{bottom:20.280000px;}
.y11b{bottom:20.295000px;}
.yd9{bottom:21.375000px;}
.y3a{bottom:21.390000px;}
.yee{bottom:21.405000px;}
.ye6{bottom:21.420000px;}
.y3e{bottom:22.500000px;}
.y10b{bottom:22.545000px;}
.y3d{bottom:25.875000px;}
.y19{bottom:28.125000px;}
.yb{bottom:30.405000px;}
.y5{bottom:38.287500px;}
.y39{bottom:38.295000px;}
.y18{bottom:45.045000px;}
.ya{bottom:46.155000px;}
.y38{bottom:55.170000px;}
.y1{bottom:61.912500px;}
.y17{bottom:61.920000px;}
.y37{bottom:73.170000px;}
.y9{bottom:73.185000px;}
.y16{bottom:77.700000px;}
.y36{bottom:90.090000px;}
.y8{bottom:93.480000px;}
.y15{bottom:94.575000px;}
.y14{bottom:104.700000px;}
.y35{bottom:106.965000px;}
.y7{bottom:110.355000px;}
.yaf{bottom:111.450000px;}
.y4f{bottom:114.825000px;}
.yf8{bottom:117.075000px;}
.y8d{bottom:122.737500px;}
.y13{bottom:122.745000px;}
.y34{bottom:124.995000px;}
.y122{bottom:128.362500px;}
.y154{bottom:129.487500px;}
.y4e{bottom:131.737500px;}
.yae{bottom:133.987500px;}
.y28{bottom:133.995000px;}
.y8c{bottom:139.612500px;}
.y12{bottom:141.870000px;}
.y153{bottom:146.362500px;}
.y27{bottom:148.620000px;}
.y4d{bottom:149.737500px;}
.yf7{bottom:150.870000px;}
.y8b{bottom:156.480000px;}
.yad{bottom:156.495000px;}
.y33{bottom:158.745000px;}
.y152{bottom:163.275000px;}
.yf6{bottom:165.525000px;}
.y4c{bottom:166.650000px;}
.y26{bottom:166.665000px;}
.y11{bottom:167.775000px;}
.y8a{bottom:174.525000px;}
.y32{bottom:176.790000px;}
.yac{bottom:179.025000px;}
.y151{bottom:181.275000px;}
.y4b{bottom:183.525000px;}
.y25{bottom:184.665000px;}
.y121{bottom:190.275000px;}
.y89{bottom:191.400000px;}
.y10{bottom:192.525000px;}
.y31{bottom:193.665000px;}
.y150{bottom:198.150000px;}
.y24{bottom:201.570000px;}
.y88{bottom:208.320000px;}
.y30{bottom:210.570000px;}
.y14f{bottom:215.070000px;}
.y4a{bottom:218.445000px;}
.y23{bottom:219.570000px;}
.yab{bottom:224.070000px;}
.y87{bottom:226.320000px;}
.y2f{bottom:228.570000px;}
.y120{bottom:229.695000px;}
.y14e{bottom:233.070000px;}
.y49{bottom:235.320000px;}
.y22{bottom:236.445000px;}
.yf5{bottom:237.570000px;}
.y86{bottom:243.225000px;}
.y2e{bottom:245.475000px;}
.yaa{bottom:248.850000px;}
.y14d{bottom:249.975000px;}
.y48{bottom:253.350000px;}
.y21{bottom:254.475000px;}
.yf4{bottom:255.600000px;}
.y85{bottom:260.100000px;}
.y2d{bottom:262.350000px;}
.ya9{bottom:266.850000px;}
.y47{bottom:270.225000px;}
.y20{bottom:271.350000px;}
.yf3{bottom:273.600000px;}
.y84{bottom:278.100000px;}
.y2c{bottom:280.365000px;}
.ya7{bottom:283.725000px;}
.y14c{bottom:284.895000px;}
.y46{bottom:287.130000px;}
.y1f{bottom:288.270000px;}
.yf2{bottom:291.630000px;}
.y83{bottom:295.020000px;}
.y2b{bottom:297.270000px;}
.y14b{bottom:301.770000px;}
.y45{bottom:305.145000px;}
.ya6{bottom:306.255000px;}
.yf1{bottom:309.630000px;}
.y82{bottom:311.895000px;}
.y2a{bottom:314.145000px;}
.y1e{bottom:316.395000px;}
.y14a{bottom:318.645000px;}
.y44{bottom:322.020000px;}
.yf0{bottom:327.675000px;}
.ya5{bottom:328.800000px;}
.y81{bottom:329.925000px;}
.y29{bottom:332.175000px;}
.y1d{bottom:334.425000px;}
.y149{bottom:336.675000px;}
.y43{bottom:338.925000px;}
.yef{bottom:345.675000px;}
.y80{bottom:346.800000px;}
.ya4{bottom:351.300000px;}
.y148{bottom:353.550000px;}
.y42{bottom:356.925000px;}
.y7f{bottom:363.675000px;}
.y147{bottom:370.455000px;}
.y11e{bottom:371.580000px;}
.y41{bottom:373.830000px;}
.y7e{bottom:381.705000px;}
.y146{bottom:388.455000px;}
.y40{bottom:390.705000px;}
.yd4{bottom:392.970000px;}
.ya3{bottom:396.330000px;}
.y7d{bottom:398.580000px;}
.yed{bottom:403.095000px;}
.y145{bottom:405.330000px;}
.y3f{bottom:407.580000px;}
.yd3{bottom:409.875000px;}
.y11d{bottom:412.125000px;}
.y7c{bottom:415.500000px;}
.ya2{bottom:418.875000px;}
.yec{bottom:421.125000px;}
.y3c{bottom:422.250000px;}
.yd2{bottom:432.375000px;}
.y7b{bottom:433.500000px;}
.yeb{bottom:438.000000px;}
.y144{bottom:440.250000px;}
.ya1{bottom:441.375000px;}
.y7a{bottom:450.375000px;}
.y11c{bottom:451.530000px;}
.yd1{bottom:454.905000px;}
.y143{bottom:457.170000px;}
.y1c{bottom:459.405000px;}
.yea{bottom:460.530000px;}
.ya0{bottom:463.905000px;}
.y79{bottom:467.295000px;}
.y142{bottom:474.045000px;}
.y11a{bottom:475.155000px;}
.yd0{bottom:477.405000px;}
.ye9{bottom:483.030000px;}
.y78{bottom:485.280000px;}
.y9f{bottom:489.795000px;}
.y141{bottom:492.030000px;}
.ycf{bottom:499.950000px;}
.y77{bottom:502.200000px;}
.ye8{bottom:505.575000px;}
.y9e{bottom:506.700000px;}
.y140{bottom:508.950000px;}
.y119{bottom:514.575000px;}
.y76{bottom:519.075000px;}
.yce{bottom:522.450000px;}
.y9d{bottom:524.700000px;}
.y13f{bottom:525.825000px;}
.ye5{bottom:528.075000px;}
.y75{bottom:537.120000px;}
.y13e{bottom:543.870000px;}
.ycd{bottom:544.980000px;}
.y9c{bottom:547.230000px;}
.y117{bottom:553.980000px;}
.y74{bottom:553.995000px;}
.y13d{bottom:560.745000px;}
.ycc{bottom:567.480000px;}
.ye4{bottom:568.605000px;}
.y9b{bottom:569.730000px;}
.y73{bottom:570.870000px;}
.y13c{bottom:577.650000px;}
.y72{bottom:588.900000px;}
.ycb{bottom:590.025000px;}
.ye3{bottom:591.150000px;}
.y9a{bottom:592.275000px;}
.y116{bottom:594.525000px;}
.y13b{bottom:595.650000px;}
.y71{bottom:605.775000px;}
.yca{bottom:612.525000px;}
.ye2{bottom:613.650000px;}
.y99{bottom:614.775000px;}
.y70{bottom:622.695000px;}
.y13a{bottom:629.445000px;}
.yc9{bottom:635.070000px;}
.ye0{bottom:636.195000px;}
.y98{bottom:637.320000px;}
.y6f{bottom:640.695000px;}
.y139{bottom:647.445000px;}
.y115{bottom:654.195000px;}
.y6e{bottom:657.570000px;}
.y96{bottom:659.820000px;}
.y138{bottom:664.350000px;}
.y114{bottom:667.725000px;}
.y6d{bottom:674.475000px;}
.ydf{bottom:675.600000px;}
.yc7{bottom:680.100000px;}
.y137{bottom:681.225000px;}
.y95{bottom:682.350000px;}
.y113{bottom:685.725000px;}
.y6c{bottom:692.475000px;}
.yde{bottom:698.100000px;}
.y136{bottom:699.225000px;}
.yc6{bottom:702.630000px;}
.y112{bottom:703.755000px;}
.y94{bottom:704.880000px;}
.y6b{bottom:709.395000px;}
.y135{bottom:716.145000px;}
.ydd{bottom:720.630000px;}
.y111{bottom:721.755000px;}
.yc4{bottom:725.130000px;}
.y6a{bottom:726.270000px;}
.y93{bottom:727.380000px;}
.y134{bottom:733.020000px;}
.y110{bottom:739.755000px;}
.ydb{bottom:743.130000px;}
.y69{bottom:744.300000px;}
.yc3{bottom:747.675000px;}
.y92{bottom:749.925000px;}
.y133{bottom:751.050000px;}
.y10f{bottom:757.800000px;}
.y68{bottom:761.175000px;}
.yda{bottom:765.675000px;}
.y132{bottom:767.925000px;}
.yc2{bottom:770.175000px;}
.y91{bottom:772.425000px;}
.y10e{bottom:775.800000px;}
.y67{bottom:778.050000px;}
.y131{bottom:784.800000px;}
.yd7{bottom:788.205000px;}
.yc1{bottom:792.705000px;}
.y10d{bottom:793.830000px;}
.y90{bottom:794.955000px;}
.y66{bottom:796.080000px;}
.y130{bottom:802.830000px;}
.y1b{bottom:805.080000px;}
.y10c{bottom:811.830000px;}
.y65{bottom:812.955000px;}
.yc0{bottom:815.205000px;}
.y8f{bottom:817.455000px;}
.y12f{bottom:819.705000px;}
.y64{bottom:829.875000px;}
.yd6{bottom:831.000000px;}
.yf{bottom:834.375000px;}
.y12e{bottom:836.625000px;}
.ybf{bottom:837.750000px;}
.y8e{bottom:840.000000px;}
.y63{bottom:847.875000px;}
.y12d{bottom:854.625000px;}
.ybe{bottom:860.250000px;}
.y62{bottom:864.750000px;}
.y108{bottom:865.875000px;}
.y12c{bottom:871.545000px;}
.yd5{bottom:878.295000px;}
.y61{bottom:881.670000px;}
.ybd{bottom:882.795000px;}
.y10a{bottom:883.920000px;}
.y12b{bottom:888.420000px;}
.y60{bottom:899.670000px;}
.ybc{bottom:905.295000px;}
.y12a{bottom:906.405000px;}
.y107{bottom:906.420000px;}
.y5f{bottom:916.575000px;}
.y106{bottom:923.325000px;}
.ybb{bottom:927.825000px;}
.y129{bottom:928.950000px;}
.y5e{bottom:933.450000px;}
.y105{bottom:937.950000px;}
.yba{bottom:950.325000px;}
.y5d{bottom:951.450000px;}
.y104{bottom:955.995000px;}
.y5c{bottom:968.370000px;}
.yb9{bottom:972.870000px;}
.y103{bottom:973.995000px;}
.y5b{bottom:985.245000px;}
.y102{bottom:991.995000px;}
.yb8{bottom:995.400000px;}
.y5a{bottom:1003.275000px;}
.y128{bottom:1008.900000px;}
.y101{bottom:1010.025000px;}
.yb7{bottom:1017.900000px;}
.y59{bottom:1020.150000px;}
.y100{bottom:1028.025000px;}
.y58{bottom:1037.070000px;}
.yb6{bottom:1040.445000px;}
.yd{bottom:1041.570000px;}
.yff{bottom:1046.070000px;}
.y127{bottom:1048.320000px;}
.y57{bottom:1055.070000px;}
.yb5{bottom:1062.945000px;}
.yfe{bottom:1064.070000px;}
.y6{bottom:1067.445000px;}
.y126{bottom:1070.820000px;}
.y56{bottom:1071.945000px;}
.yfd{bottom:1082.100000px;}
.yb4{bottom:1085.475000px;}
.y55{bottom:1088.850000px;}
.yfc{bottom:1100.100000px;}
.y54{bottom:1106.850000px;}
.y124{bottom:1110.225000px;}
.yb3{bottom:1111.350000px;}
.yfb{bottom:1118.100000px;}
.y53{bottom:1123.755000px;}
.yb2{bottom:1128.255000px;}
.yf9{bottom:1136.130000px;}
.y52{bottom:1140.630000px;}
.yb1{bottom:1146.255000px;}
.y123{bottom:1150.755000px;}
.yfa{bottom:1154.130000px;}
.y51{bottom:1158.630000px;}
.yb0{bottom:1167.675000px;}
.y50{bottom:1175.550000px;}
.h21{height:16.860000px;}
.h1f{height:16.875000px;}
.h29{height:16.897500px;}
.h20{height:16.912500px;}
.h24{height:17.985000px;}
.h22{height:18.000000px;}
.h25{height:18.022500px;}
.h23{height:18.037500px;}
.hb{height:25.875000px;}
.h14{height:29.287500px;}
.h12{height:29.833125px;}
.h13{height:29.953125px;}
.h2{height:32.662500px;}
.h2b{height:33.750000px;}
.h27{height:33.787500px;}
.h26{height:34.875000px;}
.h2c{height:34.897500px;}
.h28{height:34.912500px;}
.h11{height:35.806641px;}
.h2a{height:36.037500px;}
.h8{height:37.125000px;}
.h1d{height:37.162500px;}
.h1a{height:39.832031px;}
.h1c{height:40.847168px;}
.h1b{height:41.275635px;}
.h19{height:41.389893px;}
.h1e{height:42.589600px;}
.hd{height:43.075195px;}
.h4{height:43.453125px;}
.ha{height:43.875000px;}
.h18{height:47.074219px;}
.h17{height:49.234131px;}
.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;}
.h15{height:73.722656px;}
.h7{height:121.597500px;}
.hc{height:207.180000px;}
.h16{height:345.675000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w3d{width:19.125000px;}
.w37{width:19.162500px;}
.w39{width:31.537500px;}
.w3b{width:45.075000px;}
.w33{width:48.450000px;}
.w31{width:57.450000px;}
.w3e{width:59.700000px;}
.w38{width:60.825000px;}
.w23{width:63.075000px;}
.w34{width:64.200000px;}
.w3a{width:67.575000px;}
.w2b{width:69.825000px;}
.w29{width:70.950000px;}
.w3c{width:72.112500px;}
.w21{width:73.237500px;}
.w2{width:74.362500px;}
.w32{width:77.700000px;}
.w36{width:79.987500px;}
.w24{width:81.112500px;}
.w30{width:86.737500px;}
.w35{width:92.362500px;}
.w1b{width:94.612500px;}
.w2c{width:95.737500px;}
.w17{width:96.862500px;}
.w2a{width:96.900000px;}
.w22{width:101.362500px;}
.w28{width:107.025000px;}
.w20{width:110.400000px;}
.w12{width:111.487500px;}
.w2f{width:113.775000px;}
.w18{width:126.187500px;}
.w2d{width:135.150000px;}
.w10{width:136.312500px;}
.w1f{width:145.312500px;}
.wa{width:149.812500px;}
.w4{width:152.055000px;}
.wf{width:153.180000px;}
.wb{width:156.600000px;}
.w2e{width:164.430000px;}
.w1a{width:165.600000px;}
.w27{width:166.680000px;}
.w13{width:167.805000px;}
.w26{width:167.850000px;}
.wc{width:172.350000px;}
.w1e{width:175.725000px;}
.w14{width:184.770000px;}
.w1c{width:197.145000px;}
.we{width:201.645000px;}
.w15{width:205.020000px;}
.w7{width:223.020000px;}
.wd{width:233.175000px;}
.w9{width:245.550000px;}
.w11{width:256.800000px;}
.w19{width:265.845000px;}
.w16{width:294.000000px;}
.w25{width:303.000000px;}
.w1d{width:314.250000px;}
.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;}
.x19{left:1.125000px;}
.x35{left:6.795000px;}
.x8{left:7.875000px;}
.x2{left:9.037500px;}
.xe{left:12.375000px;}
.x1{left:72.075000px;}
.x5{left:73.237500px;}
.x18{left:79.987500px;}
.x4{left:81.112487px;}
.x6{left:97.987500px;}
.x15{left:108.149987px;}
.x11{left:117.142500px;}
.x10{left:118.282500px;}
.x16{left:135.187487px;}
.x12{left:165.562500px;}
.x25{left:166.724987px;}
.x44{left:176.850000px;}
.x2b{left:189.224987px;}
.x1d{left:203.894987px;}
.x17{left:209.519987px;}
.x13{left:214.012500px;}
.x2a{left:217.394987px;}
.x7{left:225.300000px;}
.x43{left:237.674987px;}
.x3b{left:239.924987px;}
.x21{left:241.049987px;}
.x2f{left:254.594987px;}
.x45{left:260.220000px;}
.x46{left:282.750000px;}
.x26{left:288.375000px;}
.xb{left:290.625000px;}
.x14{left:296.250000px;}
.xf{left:315.382500px;}
.x1e{left:316.545000px;}
.x3c{left:318.795000px;}
.x1a{left:328.920000px;}
.x22{left:341.325000px;}
.x9{left:345.780000px;}
.x47{left:346.950000px;}
.x2c{left:349.200000px;}
.xa{left:364.950000px;}
.xd{left:373.957500px;}
.x40{left:376.245000px;}
.x37{left:377.370000px;}
.x48{left:381.870000px;}
.x30{left:387.495000px;}
.x36{left:447.194987px;}
.x3a{left:448.320000px;}
.x49{left:452.820000px;}
.xc{left:453.945000px;}
.x3d{left:455.100000px;}
.x23{left:457.350000px;}
.x33{left:461.850000px;}
.x1b{left:482.100000px;}
.x4a{left:501.270000px;}
.x2d{left:518.175000px;}
.x1f{left:521.550000px;}
.x41{left:524.925000px;}
.x38{left:546.345000px;}
.x31{left:564.345000px;}
.x4b{left:576.750000px;}
.x27{left:586.875000px;}
.x4c{left:600.375000px;}
.x2e{left:617.280000px;}
.x3e{left:620.655000px;}
.x34{left:628.530000px;}
.x24{left:629.655000px;}
.x1c{left:642.075000px;}
.x4d{left:663.495000px;}
.x42{left:670.245000px;}
.x20{left:678.120000px;}
.x28{left:688.245000px;}
.x4e{left:698.400000px;}
.x32{left:710.775000px;}
.x29{left:713.024987px;}
.x39{left:714.150000px;}
.x3f{left:734.445000px;}
.x3{left:746.820000px;}
.x4f{left:769.350000px;}
@media print{
.v2{vertical-align:-12.106667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls9{letter-spacing:-2.421333pt;}
.ls14{letter-spacing:-2.000000pt;}
.ls15{letter-spacing:-1.546667pt;}
.lsc{letter-spacing:-1.418667pt;}
.lsd{letter-spacing:-1.317333pt;}
.ls1d{letter-spacing:-1.002667pt;}
.ls13{letter-spacing:-0.912000pt;}
.lsa{letter-spacing:-0.704000pt;}
.lse{letter-spacing:-0.693333pt;}
.ls8{letter-spacing:-0.336000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.088000pt;}
.lsb{letter-spacing:0.613333pt;}
.ls17{letter-spacing:0.684000pt;}
.ls19{letter-spacing:0.790667pt;}
.ls1a{letter-spacing:0.844000pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.312000pt;}
.ls10{letter-spacing:1.546667pt;}
.ls2{letter-spacing:1.648000pt;}
.ls3{letter-spacing:1.748000pt;}
.ls16{letter-spacing:1.924000pt;}
.ls12{letter-spacing:1.946667pt;}
.ls4{letter-spacing:2.000000pt;}
.ls1b{letter-spacing:2.053333pt;}
.ls11{letter-spacing:2.106667pt;}
.ls18{letter-spacing:2.160000pt;}
.ls5{letter-spacing:4.248000pt;}
.ls1c{letter-spacing:13.677333pt;}
.lsf{letter-spacing:41.677333pt;}
.ws5{word-spacing:-15.000000pt;}
.wsc{word-spacing:-14.924000pt;}
.ws3{word-spacing:-14.352000pt;}
.ws2{word-spacing:-13.648000pt;}
.ws6{word-spacing:-13.000000pt;}
.ws9{word-spacing:-12.088000pt;}
.ws7{word-spacing:-11.752000pt;}
.wsb{word-spacing:-11.453333pt;}
.ws1{word-spacing:-11.138667pt;}
.wsa{word-spacing:-11.000000pt;}
.ws0{word-spacing:-10.512000pt;}
.ws4{word-spacing:-7.232000pt;}
.ws8{word-spacing:0.000000pt;}
._6{margin-left:-7.228000pt;}
._13{margin-left:-6.185333pt;}
._14{margin-left:-4.529333pt;}
._a{margin-left:-3.284000pt;}
._2{margin-left:-2.112000pt;}
._1{margin-left:-1.056000pt;}
._0{width:1.728000pt;}
._3{width:2.837333pt;}
._4{width:4.298667pt;}
._9{width:6.032000pt;}
._8{width:7.468000pt;}
._7{width:8.456000pt;}
._5{width:9.680000pt;}
._d{width:11.133333pt;}
._12{width:14.253333pt;}
._11{width:15.773333pt;}
._15{width:16.778667pt;}
._1e{width:17.706667pt;}
._10{width:18.925333pt;}
._f{width:22.080000pt;}
._e{width:23.676000pt;}
._1d{width:25.429333pt;}
._c{width:26.422667pt;}
._b{width:27.625333pt;}
._19{width:34.172000pt;}
._18{width:35.416000pt;}
._1c{width:38.900000pt;}
._1b{width:62.856000pt;}
._17{width:66.612000pt;}
._1a{width:67.813333pt;}
._16{width:71.610667pt;}
.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;}
.y3b{bottom:3.013333pt;}
.y97{bottom:3.026667pt;}
.ydc{bottom:3.040000pt;}
.y1a{bottom:4.000000pt;}
.yc5{bottom:4.013333pt;}
.yc8{bottom:4.026667pt;}
.ya8{bottom:4.040000pt;}
.ye{bottom:10.000000pt;}
.yd8{bottom:11.000000pt;}
.y118{bottom:11.013333pt;}
.y125{bottom:11.026667pt;}
.ye7{bottom:11.040000pt;}
.yc{bottom:12.026667pt;}
.y109{bottom:12.040000pt;}
.y4{bottom:15.033333pt;}
.y2{bottom:17.033333pt;}
.ye1{bottom:18.000000pt;}
.y11f{bottom:18.026667pt;}
.y11b{bottom:18.040000pt;}
.yd9{bottom:19.000000pt;}
.y3a{bottom:19.013333pt;}
.yee{bottom:19.026667pt;}
.ye6{bottom:19.040000pt;}
.y3e{bottom:20.000000pt;}
.y10b{bottom:20.040000pt;}
.y3d{bottom:23.000000pt;}
.y19{bottom:25.000000pt;}
.yb{bottom:27.026667pt;}
.y5{bottom:34.033333pt;}
.y39{bottom:34.040000pt;}
.y18{bottom:40.040000pt;}
.ya{bottom:41.026667pt;}
.y38{bottom:49.040000pt;}
.y1{bottom:55.033333pt;}
.y17{bottom:55.040000pt;}
.y37{bottom:65.040000pt;}
.y9{bottom:65.053333pt;}
.y16{bottom:69.066667pt;}
.y36{bottom:80.080000pt;}
.y8{bottom:83.093333pt;}
.y15{bottom:84.066667pt;}
.y14{bottom:93.066667pt;}
.y35{bottom:95.080000pt;}
.y7{bottom:98.093333pt;}
.yaf{bottom:99.066667pt;}
.y4f{bottom:102.066667pt;}
.yf8{bottom:104.066667pt;}
.y8d{bottom:109.100000pt;}
.y13{bottom:109.106667pt;}
.y34{bottom:111.106667pt;}
.y122{bottom:114.100000pt;}
.y154{bottom:115.100000pt;}
.y4e{bottom:117.100000pt;}
.yae{bottom:119.100000pt;}
.y28{bottom:119.106667pt;}
.y8c{bottom:124.100000pt;}
.y12{bottom:126.106667pt;}
.y153{bottom:130.100000pt;}
.y27{bottom:132.106667pt;}
.y4d{bottom:133.100000pt;}
.yf7{bottom:134.106667pt;}
.y8b{bottom:139.093333pt;}
.yad{bottom:139.106667pt;}
.y33{bottom:141.106667pt;}
.y152{bottom:145.133333pt;}
.yf6{bottom:147.133333pt;}
.y4c{bottom:148.133333pt;}
.y26{bottom:148.146667pt;}
.y11{bottom:149.133333pt;}
.y8a{bottom:155.133333pt;}
.y32{bottom:157.146667pt;}
.yac{bottom:159.133333pt;}
.y151{bottom:161.133333pt;}
.y4b{bottom:163.133333pt;}
.y25{bottom:164.146667pt;}
.y121{bottom:169.133333pt;}
.y89{bottom:170.133333pt;}
.y10{bottom:171.133333pt;}
.y31{bottom:172.146667pt;}
.y150{bottom:176.133333pt;}
.y24{bottom:179.173333pt;}
.y88{bottom:185.173333pt;}
.y30{bottom:187.173333pt;}
.y14f{bottom:191.173333pt;}
.y4a{bottom:194.173333pt;}
.y23{bottom:195.173333pt;}
.yab{bottom:199.173333pt;}
.y87{bottom:201.173333pt;}
.y2f{bottom:203.173333pt;}
.y120{bottom:204.173333pt;}
.y14e{bottom:207.173333pt;}
.y49{bottom:209.173333pt;}
.y22{bottom:210.173333pt;}
.yf5{bottom:211.173333pt;}
.y86{bottom:216.200000pt;}
.y2e{bottom:218.200000pt;}
.yaa{bottom:221.200000pt;}
.y14d{bottom:222.200000pt;}
.y48{bottom:225.200000pt;}
.y21{bottom:226.200000pt;}
.yf4{bottom:227.200000pt;}
.y85{bottom:231.200000pt;}
.y2d{bottom:233.200000pt;}
.ya9{bottom:237.200000pt;}
.y47{bottom:240.200000pt;}
.y20{bottom:241.200000pt;}
.yf3{bottom:243.200000pt;}
.y84{bottom:247.200000pt;}
.y2c{bottom:249.213333pt;}
.ya7{bottom:252.200000pt;}
.y14c{bottom:253.240000pt;}
.y46{bottom:255.226667pt;}
.y1f{bottom:256.240000pt;}
.yf2{bottom:259.226667pt;}
.y83{bottom:262.240000pt;}
.y2b{bottom:264.240000pt;}
.y14b{bottom:268.240000pt;}
.y45{bottom:271.240000pt;}
.ya6{bottom:272.226667pt;}
.yf1{bottom:275.226667pt;}
.y82{bottom:277.240000pt;}
.y2a{bottom:279.240000pt;}
.y1e{bottom:281.240000pt;}
.y14a{bottom:283.240000pt;}
.y44{bottom:286.240000pt;}
.yf0{bottom:291.266667pt;}
.ya5{bottom:292.266667pt;}
.y81{bottom:293.266667pt;}
.y29{bottom:295.266667pt;}
.y1d{bottom:297.266667pt;}
.y149{bottom:299.266667pt;}
.y43{bottom:301.266667pt;}
.yef{bottom:307.266667pt;}
.y80{bottom:308.266667pt;}
.ya4{bottom:312.266667pt;}
.y148{bottom:314.266667pt;}
.y42{bottom:317.266667pt;}
.y7f{bottom:323.266667pt;}
.y147{bottom:329.293333pt;}
.y11e{bottom:330.293333pt;}
.y41{bottom:332.293333pt;}
.y7e{bottom:339.293333pt;}
.y146{bottom:345.293333pt;}
.y40{bottom:347.293333pt;}
.yd4{bottom:349.306667pt;}
.ya3{bottom:352.293333pt;}
.y7d{bottom:354.293333pt;}
.yed{bottom:358.306667pt;}
.y145{bottom:360.293333pt;}
.y3f{bottom:362.293333pt;}
.yd3{bottom:364.333333pt;}
.y11d{bottom:366.333333pt;}
.y7c{bottom:369.333333pt;}
.ya2{bottom:372.333333pt;}
.yec{bottom:374.333333pt;}
.y3c{bottom:375.333333pt;}
.yd2{bottom:384.333333pt;}
.y7b{bottom:385.333333pt;}
.yeb{bottom:389.333333pt;}
.y144{bottom:391.333333pt;}
.ya1{bottom:392.333333pt;}
.y7a{bottom:400.333333pt;}
.y11c{bottom:401.360000pt;}
.yd1{bottom:404.360000pt;}
.y143{bottom:406.373333pt;}
.y1c{bottom:408.360000pt;}
.yea{bottom:409.360000pt;}
.ya0{bottom:412.360000pt;}
.y79{bottom:415.373333pt;}
.y142{bottom:421.373333pt;}
.y11a{bottom:422.360000pt;}
.yd0{bottom:424.360000pt;}
.ye9{bottom:429.360000pt;}
.y78{bottom:431.360000pt;}
.y9f{bottom:435.373333pt;}
.y141{bottom:437.360000pt;}
.ycf{bottom:444.400000pt;}
.y77{bottom:446.400000pt;}
.ye8{bottom:449.400000pt;}
.y9e{bottom:450.400000pt;}
.y140{bottom:452.400000pt;}
.y119{bottom:457.400000pt;}
.y76{bottom:461.400000pt;}
.yce{bottom:464.400000pt;}
.y9d{bottom:466.400000pt;}
.y13f{bottom:467.400000pt;}
.ye5{bottom:469.400000pt;}
.y75{bottom:477.440000pt;}
.y13e{bottom:483.440000pt;}
.ycd{bottom:484.426667pt;}
.y9c{bottom:486.426667pt;}
.y117{bottom:492.426667pt;}
.y74{bottom:492.440000pt;}
.y13d{bottom:498.440000pt;}
.ycc{bottom:504.426667pt;}
.ye4{bottom:505.426667pt;}
.y9b{bottom:506.426667pt;}
.y73{bottom:507.440000pt;}
.y13c{bottom:513.466667pt;}
.y72{bottom:523.466667pt;}
.ycb{bottom:524.466667pt;}
.ye3{bottom:525.466667pt;}
.y9a{bottom:526.466667pt;}
.y116{bottom:528.466667pt;}
.y13b{bottom:529.466667pt;}
.y71{bottom:538.466667pt;}
.yca{bottom:544.466667pt;}
.ye2{bottom:545.466667pt;}
.y99{bottom:546.466667pt;}
.y70{bottom:553.506667pt;}
.y13a{bottom:559.506667pt;}
.yc9{bottom:564.506667pt;}
.ye0{bottom:565.506667pt;}
.y98{bottom:566.506667pt;}
.y6f{bottom:569.506667pt;}
.y139{bottom:575.506667pt;}
.y115{bottom:581.506667pt;}
.y6e{bottom:584.506667pt;}
.y96{bottom:586.506667pt;}
.y138{bottom:590.533333pt;}
.y114{bottom:593.533333pt;}
.y6d{bottom:599.533333pt;}
.ydf{bottom:600.533333pt;}
.yc7{bottom:604.533333pt;}
.y137{bottom:605.533333pt;}
.y95{bottom:606.533333pt;}
.y113{bottom:609.533333pt;}
.y6c{bottom:615.533333pt;}
.yde{bottom:620.533333pt;}
.y136{bottom:621.533333pt;}
.yc6{bottom:624.560000pt;}
.y112{bottom:625.560000pt;}
.y94{bottom:626.560000pt;}
.y6b{bottom:630.573333pt;}
.y135{bottom:636.573333pt;}
.ydd{bottom:640.560000pt;}
.y111{bottom:641.560000pt;}
.yc4{bottom:644.560000pt;}
.y6a{bottom:645.573333pt;}
.y93{bottom:646.560000pt;}
.y134{bottom:651.573333pt;}
.y110{bottom:657.560000pt;}
.ydb{bottom:660.560000pt;}
.y69{bottom:661.600000pt;}
.yc3{bottom:664.600000pt;}
.y92{bottom:666.600000pt;}
.y133{bottom:667.600000pt;}
.y10f{bottom:673.600000pt;}
.y68{bottom:676.600000pt;}
.yda{bottom:680.600000pt;}
.y132{bottom:682.600000pt;}
.yc2{bottom:684.600000pt;}
.y91{bottom:686.600000pt;}
.y10e{bottom:689.600000pt;}
.y67{bottom:691.600000pt;}
.y131{bottom:697.600000pt;}
.yd7{bottom:700.626667pt;}
.yc1{bottom:704.626667pt;}
.y10d{bottom:705.626667pt;}
.y90{bottom:706.626667pt;}
.y66{bottom:707.626667pt;}
.y130{bottom:713.626667pt;}
.y1b{bottom:715.626667pt;}
.y10c{bottom:721.626667pt;}
.y65{bottom:722.626667pt;}
.yc0{bottom:724.626667pt;}
.y8f{bottom:726.626667pt;}
.y12f{bottom:728.626667pt;}
.y64{bottom:737.666667pt;}
.yd6{bottom:738.666667pt;}
.yf{bottom:741.666667pt;}
.y12e{bottom:743.666667pt;}
.ybf{bottom:744.666667pt;}
.y8e{bottom:746.666667pt;}
.y63{bottom:753.666667pt;}
.y12d{bottom:759.666667pt;}
.ybe{bottom:764.666667pt;}
.y62{bottom:768.666667pt;}
.y108{bottom:769.666667pt;}
.y12c{bottom:774.706667pt;}
.yd5{bottom:780.706667pt;}
.y61{bottom:783.706667pt;}
.ybd{bottom:784.706667pt;}
.y10a{bottom:785.706667pt;}
.y12b{bottom:789.706667pt;}
.y60{bottom:799.706667pt;}
.ybc{bottom:804.706667pt;}
.y12a{bottom:805.693333pt;}
.y107{bottom:805.706667pt;}
.y5f{bottom:814.733333pt;}
.y106{bottom:820.733333pt;}
.ybb{bottom:824.733333pt;}
.y129{bottom:825.733333pt;}
.y5e{bottom:829.733333pt;}
.y105{bottom:833.733333pt;}
.yba{bottom:844.733333pt;}
.y5d{bottom:845.733333pt;}
.y104{bottom:849.773333pt;}
.y5c{bottom:860.773333pt;}
.yb9{bottom:864.773333pt;}
.y103{bottom:865.773333pt;}
.y5b{bottom:875.773333pt;}
.y102{bottom:881.773333pt;}
.yb8{bottom:884.800000pt;}
.y5a{bottom:891.800000pt;}
.y128{bottom:896.800000pt;}
.y101{bottom:897.800000pt;}
.yb7{bottom:904.800000pt;}
.y59{bottom:906.800000pt;}
.y100{bottom:913.800000pt;}
.y58{bottom:921.840000pt;}
.yb6{bottom:924.840000pt;}
.yd{bottom:925.840000pt;}
.yff{bottom:929.840000pt;}
.y127{bottom:931.840000pt;}
.y57{bottom:937.840000pt;}
.yb5{bottom:944.840000pt;}
.yfe{bottom:945.840000pt;}
.y6{bottom:948.840000pt;}
.y126{bottom:951.840000pt;}
.y56{bottom:952.840000pt;}
.yfd{bottom:961.866667pt;}
.yb4{bottom:964.866667pt;}
.y55{bottom:967.866667pt;}
.yfc{bottom:977.866667pt;}
.y54{bottom:983.866667pt;}
.y124{bottom:986.866667pt;}
.yb3{bottom:987.866667pt;}
.yfb{bottom:993.866667pt;}
.y53{bottom:998.893333pt;}
.yb2{bottom:1002.893333pt;}
.yf9{bottom:1009.893333pt;}
.y52{bottom:1013.893333pt;}
.yb1{bottom:1018.893333pt;}
.y123{bottom:1022.893333pt;}
.yfa{bottom:1025.893333pt;}
.y51{bottom:1029.893333pt;}
.yb0{bottom:1037.933333pt;}
.y50{bottom:1044.933333pt;}
.h21{height:14.986667pt;}
.h1f{height:15.000000pt;}
.h29{height:15.020000pt;}
.h20{height:15.033333pt;}
.h24{height:15.986667pt;}
.h22{height:16.000000pt;}
.h25{height:16.020000pt;}
.h23{height:16.033333pt;}
.hb{height:23.000000pt;}
.h14{height:26.033333pt;}
.h12{height:26.518333pt;}
.h13{height:26.625000pt;}
.h2{height:29.033333pt;}
.h2b{height:30.000000pt;}
.h27{height:30.033333pt;}
.h26{height:31.000000pt;}
.h2c{height:31.020000pt;}
.h28{height:31.033333pt;}
.h11{height:31.828125pt;}
.h2a{height:32.033333pt;}
.h8{height:33.000000pt;}
.h1d{height:33.033333pt;}
.h1a{height:35.406250pt;}
.h1c{height:36.308594pt;}
.h1b{height:36.689453pt;}
.h19{height:36.791016pt;}
.h1e{height:37.857422pt;}
.hd{height:38.289062pt;}
.h4{height:38.625000pt;}
.ha{height:39.000000pt;}
.h18{height:41.843750pt;}
.h17{height:43.763672pt;}
.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;}
.h15{height:65.531250pt;}
.h7{height:108.086667pt;}
.hc{height:184.160000pt;}
.h16{height:307.266667pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w3d{width:17.000000pt;}
.w37{width:17.033333pt;}
.w39{width:28.033333pt;}
.w3b{width:40.066667pt;}
.w33{width:43.066667pt;}
.w31{width:51.066667pt;}
.w3e{width:53.066667pt;}
.w38{width:54.066667pt;}
.w23{width:56.066667pt;}
.w34{width:57.066667pt;}
.w3a{width:60.066667pt;}
.w2b{width:62.066667pt;}
.w29{width:63.066667pt;}
.w3c{width:64.100000pt;}
.w21{width:65.100000pt;}
.w2{width:66.100000pt;}
.w32{width:69.066667pt;}
.w36{width:71.100000pt;}
.w24{width:72.100000pt;}
.w30{width:77.100000pt;}
.w35{width:82.100000pt;}
.w1b{width:84.100000pt;}
.w2c{width:85.100000pt;}
.w17{width:86.100000pt;}
.w2a{width:86.133333pt;}
.w22{width:90.100000pt;}
.w28{width:95.133333pt;}
.w20{width:98.133333pt;}
.w12{width:99.100000pt;}
.w2f{width:101.133333pt;}
.w18{width:112.166667pt;}
.w2d{width:120.133333pt;}
.w10{width:121.166667pt;}
.w1f{width:129.166667pt;}
.wa{width:133.166667pt;}
.w4{width:135.160000pt;}
.wf{width:136.160000pt;}
.wb{width:139.200000pt;}
.w2e{width:146.160000pt;}
.w1a{width:147.200000pt;}
.w27{width:148.160000pt;}
.w13{width:149.160000pt;}
.w26{width:149.200000pt;}
.wc{width:153.200000pt;}
.w1e{width:156.200000pt;}
.w14{width:164.240000pt;}
.w1c{width:175.240000pt;}
.we{width:179.240000pt;}
.w15{width:182.240000pt;}
.w7{width:198.240000pt;}
.wd{width:207.266667pt;}
.w9{width:218.266667pt;}
.w11{width:228.266667pt;}
.w19{width:236.306667pt;}
.w16{width:261.333333pt;}
.w25{width:269.333333pt;}
.w1d{width:279.333333pt;}
.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;}
.x19{left:1.000000pt;}
.x35{left:6.040000pt;}
.x8{left:7.000000pt;}
.x2{left:8.033333pt;}
.xe{left:11.000000pt;}
.x1{left:64.066667pt;}
.x5{left:65.100000pt;}
.x18{left:71.100000pt;}
.x4{left:72.099988pt;}
.x6{left:87.100000pt;}
.x15{left:96.133322pt;}
.x11{left:104.126667pt;}
.x10{left:105.140000pt;}
.x16{left:120.166655pt;}
.x12{left:147.166667pt;}
.x25{left:148.199988pt;}
.x44{left:157.200000pt;}
.x2b{left:168.199988pt;}
.x1d{left:181.239988pt;}
.x17{left:186.239988pt;}
.x13{left:190.233333pt;}
.x2a{left:193.239988pt;}
.x7{left:200.266667pt;}
.x43{left:211.266655pt;}
.x3b{left:213.266655pt;}
.x21{left:214.266655pt;}
.x2f{left:226.306655pt;}
.x45{left:231.306667pt;}
.x46{left:251.333333pt;}
.x26{left:256.333333pt;}
.xb{left:258.333333pt;}
.x14{left:263.333333pt;}
.xf{left:280.340000pt;}
.x1e{left:281.373333pt;}
.x3c{left:283.373333pt;}
.x1a{left:292.373333pt;}
.x22{left:303.400000pt;}
.x9{left:307.360000pt;}
.x47{left:308.400000pt;}
.x2c{left:310.400000pt;}
.xa{left:324.400000pt;}
.xd{left:332.406667pt;}
.x40{left:334.440000pt;}
.x37{left:335.440000pt;}
.x48{left:339.440000pt;}
.x30{left:344.440000pt;}
.x36{left:397.506655pt;}
.x3a{left:398.506667pt;}
.x49{left:402.506667pt;}
.xc{left:403.506667pt;}
.x3d{left:404.533333pt;}
.x23{left:406.533333pt;}
.x33{left:410.533333pt;}
.x1b{left:428.533333pt;}
.x4a{left:445.573333pt;}
.x2d{left:460.600000pt;}
.x1f{left:463.600000pt;}
.x41{left:466.600000pt;}
.x38{left:485.640000pt;}
.x31{left:501.640000pt;}
.x4b{left:512.666667pt;}
.x27{left:521.666667pt;}
.x4c{left:533.666667pt;}
.x2e{left:548.693333pt;}
.x3e{left:551.693333pt;}
.x34{left:558.693333pt;}
.x24{left:559.693333pt;}
.x1c{left:570.733333pt;}
.x4d{left:589.773333pt;}
.x42{left:595.773333pt;}
.x20{left:602.773333pt;}
.x28{left:611.773333pt;}
.x4e{left:620.800000pt;}
.x32{left:631.800000pt;}
.x29{left:633.799988pt;}
.x39{left:634.800000pt;}
.x3f{left:652.840000pt;}
.x3{left:663.840000pt;}
.x4f{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; }
  