
    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_1c12c719db00921c24aec421.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_49db43c376ded5ab8861c636.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_c5de427ce37a5d4fd801799f.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_d9c491c1eb6664658f66c2c8.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_43ed29cc20081a4c5665e978.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_8fcdeb282ffae68bc10fe0b3.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_34d7193625c32ccf1a1f71d8.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_5fea6d78371ecd35208034b7.woff')format("woff");}.ffc{font-family:ffc;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_a340068ab20bfaaab4b41cc2.woff')format("woff");}.ffd{font-family:ffd;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_2171d31a7b012090d74cb6aa.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_21b12f394e5d97e5d8cba259.woff')format("woff");}.fff{font-family:fff;line-height:0.938965;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_6216a6d6b0f4a8aa15ade37d.woff')format("woff");}.ff10{font-family:ff10;line-height:0.938965;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_64a243b540db875b2db2a2f6.woff')format("woff");}.ff11{font-family:ff11;line-height:0.934082;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_6a754625b2d7d47608176a43.woff')format("woff");}.ff12{font-family:ff12;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ff13{font-family:ff13;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff14{font-family:ff14;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_166f44b2b9483ac5c9ca8f44.woff')format("woff");}.ff15{font-family:ff15;line-height:0.891113;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);}
.v0{vertical-align:0.000000px;}
.ls16{letter-spacing:-1.440000px;}
.ls18{letter-spacing:-1.200000px;}
.ls17{letter-spacing:-0.600000px;}
.ls8{letter-spacing:-0.432000px;}
.lsd{letter-spacing:-0.420000px;}
.ls19{letter-spacing:-0.240000px;}
.ls6{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.060000px;}
.lsb{letter-spacing:0.120000px;}
.ls2{letter-spacing:0.138000px;}
.ls10{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.222000px;}
.lsc{letter-spacing:0.240000px;}
.ls1{letter-spacing:0.276000px;}
.ls5{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.390000px;}
.ls4{letter-spacing:0.420000px;}
.ls3{letter-spacing:0.480000px;}
.ls13{letter-spacing:0.540000px;}
.lse{letter-spacing:0.600000px;}
.ls12{letter-spacing:0.660000px;}
.ls15{letter-spacing:1.200000px;}
.ls11{letter-spacing:1.260000px;}
.ls14{letter-spacing:15.720000px;}
.lsa{letter-spacing:45.720000px;}
.ls9{letter-spacing:63.720000px;}
.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;}
}
.ws4{word-spacing:-60.000000px;}
.ws0{word-spacing:-16.560000px;}
.ws8{word-spacing:-15.420000px;}
.ws6{word-spacing:-15.240000px;}
.ws5{word-spacing:-15.120000px;}
.ws1{word-spacing:-15.000000px;}
.ws7{word-spacing:-14.580000px;}
.ws9{word-spacing:-13.800000px;}
.ws2{word-spacing:-13.560000px;}
.ws3{word-spacing:0.000000px;}
._1a{margin-left:-8.916000px;}
._16{margin-left:-7.440000px;}
._1d{margin-left:-6.240000px;}
._4{margin-left:-5.160000px;}
._3{margin-left:-3.456000px;}
._2{margin-left:-2.100000px;}
._0{margin-left:-1.080000px;}
._1{width:1.116000px;}
._11{width:2.304000px;}
._5{width:3.348000px;}
._9{width:4.668000px;}
._10{width:5.772000px;}
._d{width:7.740000px;}
._c{width:9.300000px;}
._b{width:10.440000px;}
._8{width:12.300000px;}
._15{width:13.980000px;}
._a{width:16.560000px;}
._7{width:18.216000px;}
._6{width:20.004000px;}
._19{width:21.216000px;}
._18{width:22.284000px;}
._1c{width:23.724000px;}
._12{width:25.500000px;}
._1b{width:27.540000px;}
._14{width:29.724000px;}
._13{width:31.080000px;}
._e{width:32.724000px;}
._f{width:33.972000px;}
._17{width:74.640000px;}
.fc5{color:rgb(227,108,10);}
.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);}
.fs6{font-size:36.000000px;}
.fs3{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs7{font-size:57.600000px;}
.fs4{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y19{bottom:0.300000px;}
.y42{bottom:3.300000px;}
.y3{bottom:3.600000px;}
.ya0{bottom:3.615000px;}
.y47{bottom:3.915000px;}
.y17{bottom:4.800000px;}
.ye{bottom:9.600000px;}
.y45{bottom:10.500000px;}
.y9d{bottom:12.000000px;}
.yf9{bottom:12.315000px;}
.y1a{bottom:12.600000px;}
.yc{bottom:13.800000px;}
.y4{bottom:17.400000px;}
.y2{bottom:20.100000px;}
.y41{bottom:20.685000px;}
.y9c{bottom:20.700000px;}
.y46{bottom:22.215000px;}
.y44{bottom:25.215000px;}
.y16{bottom:25.500000px;}
.yaf{bottom:29.400000px;}
.yb{bottom:30.300000px;}
.y40{bottom:37.785000px;}
.yb0{bottom:38.100000px;}
.y5{bottom:39.337500px;}
.y15{bottom:45.300000px;}
.ya{bottom:46.500000px;}
.y14{bottom:54.900000px;}
.y3f{bottom:55.185000px;}
.y1{bottom:61.837500px;}
.y13{bottom:70.200000px;}
.y3e{bottom:72.330000px;}
.y9{bottom:73.500000px;}
.y12{bottom:89.100000px;}
.y3d{bottom:89.730000px;}
.y8{bottom:93.000000px;}
.y3c{bottom:106.830000px;}
.y7{bottom:111.000000px;}
.y136{bottom:111.637500px;}
.yc8{bottom:111.937500px;}
.ye5{bottom:113.437500px;}
.y11{bottom:114.600000px;}
.y2b{bottom:115.530000px;}
.y59{bottom:122.737500px;}
.y3b{bottom:124.230000px;}
.yc7{bottom:126.337500px;}
.y97{bottom:127.837500px;}
.y135{bottom:129.037500px;}
.ye4{bottom:130.537500px;}
.y2a{bottom:130.830000px;}
.y10{bottom:139.530000px;}
.y58{bottom:139.837500px;}
.y3a{bottom:141.330000px;}
.yc6{bottom:144.337500px;}
.y96{bottom:145.237500px;}
.y108{bottom:145.537500px;}
.y134{bottom:146.137500px;}
.ye3{bottom:147.937500px;}
.y29{bottom:148.830000px;}
.y57{bottom:157.245000px;}
.y39{bottom:158.730000px;}
.yc5{bottom:162.330000px;}
.y95{bottom:162.345000px;}
.y107{bottom:162.630000px;}
.y133{bottom:163.545000px;}
.ye2{bottom:165.030000px;}
.y28{bottom:165.930000px;}
.y56{bottom:174.330000px;}
.y38{bottom:175.830000px;}
.y94{bottom:179.745000px;}
.y106{bottom:180.045000px;}
.yc4{bottom:180.330000px;}
.y132{bottom:180.630000px;}
.ye1{bottom:182.430000px;}
.y27{bottom:183.330000px;}
.y55{bottom:191.730000px;}
.y37{bottom:193.230000px;}
.y93{bottom:196.845000px;}
.y105{bottom:197.130000px;}
.y131{bottom:198.030000px;}
.ye0{bottom:199.530000px;}
.y26{bottom:201.030000px;}
.yc3{bottom:201.975000px;}
.y54{bottom:208.875000px;}
.y36{bottom:210.330000px;}
.y92{bottom:214.275000px;}
.y104{bottom:214.575000px;}
.y130{bottom:215.175000px;}
.ydf{bottom:216.975000px;}
.y25{bottom:218.430000px;}
.yc2{bottom:219.075000px;}
.y53{bottom:226.275000px;}
.y35{bottom:227.760000px;}
.y91{bottom:231.375000px;}
.y103{bottom:231.675000px;}
.y12f{bottom:232.575000px;}
.yde{bottom:234.075000px;}
.y24{bottom:235.860000px;}
.yc1{bottom:236.475000px;}
.y52{bottom:243.375000px;}
.y34{bottom:244.860000px;}
.y90{bottom:248.775000px;}
.y102{bottom:249.075000px;}
.y12e{bottom:249.675000px;}
.ydd{bottom:251.475000px;}
.y23{bottom:253.260000px;}
.yc0{bottom:253.575000px;}
.y51{bottom:260.775000px;}
.y33{bottom:262.260000px;}
.y8f{bottom:265.875000px;}
.y101{bottom:266.175000px;}
.y12d{bottom:267.075000px;}
.ydc{bottom:268.575000px;}
.y22{bottom:270.660000px;}
.ybf{bottom:270.975000px;}
.y50{bottom:277.875000px;}
.y32{bottom:279.360000px;}
.y8e{bottom:283.275000px;}
.y100{bottom:283.575000px;}
.y12c{bottom:284.175000px;}
.ydb{bottom:285.975000px;}
.y21{bottom:288.060000px;}
.ybe{bottom:288.075000px;}
.y4f{bottom:295.275000px;}
.y31{bottom:296.760000px;}
.y8d{bottom:300.375000px;}
.yff{bottom:300.675000px;}
.y12b{bottom:301.575000px;}
.yda{bottom:303.075000px;}
.y20{bottom:305.460000px;}
.ybd{bottom:305.475000px;}
.y4e{bottom:312.375000px;}
.y30{bottom:313.860000px;}
.y8c{bottom:317.775000px;}
.yfe{bottom:318.075000px;}
.y12a{bottom:318.675000px;}
.yd9{bottom:320.475000px;}
.ybc{bottom:322.575000px;}
.y1f{bottom:322.860000px;}
.y4d{bottom:329.775000px;}
.y2f{bottom:331.275000px;}
.yfd{bottom:332.475000px;}
.y8b{bottom:334.875000px;}
.y129{bottom:336.075000px;}
.yd8{bottom:337.575000px;}
.ybb{bottom:339.975000px;}
.y1e{bottom:340.260000px;}
.y4c{bottom:346.875000px;}
.y2e{bottom:348.360000px;}
.yfc{bottom:350.475000px;}
.y8a{bottom:352.275000px;}
.y128{bottom:353.175000px;}
.yd7{bottom:354.975000px;}
.yba{bottom:357.075000px;}
.y4b{bottom:364.275000px;}
.y2d{bottom:365.775000px;}
.y1d{bottom:367.560000px;}
.yfb{bottom:368.505000px;}
.y89{bottom:369.420000px;}
.y127{bottom:370.605000px;}
.yd6{bottom:372.120000px;}
.yb9{bottom:375.420000px;}
.y4a{bottom:381.405000px;}
.y2c{bottom:382.860000px;}
.y1c{bottom:385.275000px;}
.yfa{bottom:386.505000px;}
.y88{bottom:386.820000px;}
.y126{bottom:387.705000px;}
.yd5{bottom:389.505000px;}
.yb8{bottom:393.705000px;}
.y49{bottom:398.820000px;}
.y87{bottom:403.920000px;}
.yf8{bottom:404.505000px;}
.y125{bottom:405.105000px;}
.yd4{bottom:406.620000px;}
.yb7{bottom:411.120000px;}
.y48{bottom:416.505000px;}
.y86{bottom:421.320000px;}
.y124{bottom:422.205000px;}
.yd3{bottom:424.005000px;}
.yb6{bottom:428.205000px;}
.y43{bottom:430.905000px;}
.y85{bottom:438.405000px;}
.y123{bottom:439.620000px;}
.yf7{bottom:439.905000px;}
.yd2{bottom:441.120000px;}
.yb5{bottom:445.605000px;}
.y84{bottom:455.820000px;}
.y122{bottom:456.705000px;}
.yf6{bottom:457.905000px;}
.yd1{bottom:458.505000px;}
.yb4{bottom:460.005000px;}
.y1b{bottom:467.520000px;}
.yd0{bottom:472.320000px;}
.y83{bottom:472.905000px;}
.y121{bottom:474.120000px;}
.yb3{bottom:478.005000px;}
.yf5{bottom:479.205000px;}
.y82{bottom:490.320000px;}
.y120{bottom:491.205000px;}
.yf4{bottom:496.605000px;}
.y81{bottom:507.405000px;}
.y11f{bottom:508.605000px;}
.yb2{bottom:513.405000px;}
.yf3{bottom:513.705000px;}
.y80{bottom:524.820000px;}
.y11e{bottom:525.705000px;}
.yf2{bottom:531.150000px;}
.yb1{bottom:531.450000px;}
.y7f{bottom:541.950000px;}
.y11d{bottom:543.150000px;}
.yf1{bottom:548.250000px;}
.y7e{bottom:559.350000px;}
.y11c{bottom:560.250000px;}
.yf0{bottom:565.650000px;}
.yae{bottom:566.550000px;}
.y7d{bottom:576.450000px;}
.y11b{bottom:577.650000px;}
.yef{bottom:582.750000px;}
.y7c{bottom:593.850000px;}
.y11a{bottom:594.750000px;}
.yee{bottom:596.550000px;}
.y7b{bottom:610.950000px;}
.y119{bottom:612.150000px;}
.yad{bottom:619.050000px;}
.y7a{bottom:628.350000px;}
.y118{bottom:629.250000px;}
.yac{bottom:637.050000px;}
.y79{bottom:645.450000px;}
.y117{bottom:646.650000px;}
.yab{bottom:658.650000px;}
.y78{bottom:662.850000px;}
.y116{bottom:663.750000px;}
.yaa{bottom:675.750000px;}
.y77{bottom:679.950000px;}
.y115{bottom:681.150000px;}
.ya9{bottom:693.195000px;}
.ycf{bottom:697.095000px;}
.y76{bottom:697.380000px;}
.y114{bottom:698.280000px;}
.ya8{bottom:710.280000px;}
.y75{bottom:714.480000px;}
.y113{bottom:715.695000px;}
.ya7{bottom:727.695000px;}
.yce{bottom:731.580000px;}
.y74{bottom:731.880000px;}
.y112{bottom:732.780000px;}
.ya6{bottom:744.780000px;}
.y73{bottom:748.995000px;}
.y111{bottom:750.180000px;}
.ya5{bottom:762.180000px;}
.ycd{bottom:766.095000px;}
.y72{bottom:766.380000px;}
.y110{bottom:767.280000px;}
.ya4{bottom:779.280000px;}
.y71{bottom:783.480000px;}
.y10f{bottom:784.695000px;}
.ya3{bottom:796.695000px;}
.ycc{bottom:800.580000px;}
.y70{bottom:800.880000px;}
.y10e{bottom:801.795000px;}
.yed{bottom:808.080000px;}
.ya2{bottom:813.795000px;}
.y6f{bottom:817.995000px;}
.y10d{bottom:819.195000px;}
.yec{bottom:825.195000px;}
.ya1{bottom:831.195000px;}
.ycb{bottom:835.080000px;}
.y6e{bottom:835.380000px;}
.y10c{bottom:836.295000px;}
.yeb{bottom:842.580000px;}
.y9f{bottom:845.580000px;}
.y6d{bottom:852.480000px;}
.y10b{bottom:853.695000px;}
.yea{bottom:859.725000px;}
.y9e{bottom:863.625000px;}
.y18{bottom:864.225000px;}
.y6c{bottom:869.625000px;}
.y10a{bottom:870.825000px;}
.ye9{bottom:877.125000px;}
.y9b{bottom:881.625000px;}
.y6b{bottom:887.025000px;}
.y109{bottom:888.225000px;}
.yf{bottom:893.925000px;}
.ye8{bottom:894.225000px;}
.yca{bottom:904.125000px;}
.y6a{bottom:905.325000px;}
.ye7{bottom:911.625000px;}
.y9a{bottom:917.025000px;}
.yc9{bottom:917.925000px;}
.y69{bottom:922.725000px;}
.ye6{bottom:925.425000px;}
.y99{bottom:935.025000px;}
.y68{bottom:939.825000px;}
.y98{bottom:953.025000px;}
.y67{bottom:957.225000px;}
.y66{bottom:974.325000px;}
.y65{bottom:991.725000px;}
.y64{bottom:1008.825000px;}
.y63{bottom:1026.255000px;}
.y62{bottom:1043.355000px;}
.yd{bottom:1048.470000px;}
.y61{bottom:1060.755000px;}
.y6{bottom:1073.655000px;}
.y60{bottom:1077.870000px;}
.y5f{bottom:1095.255000px;}
.y5e{bottom:1112.370000px;}
.y5d{bottom:1129.755000px;}
.y5c{bottom:1146.855000px;}
.y5b{bottom:1164.255000px;}
.y5a{bottom:1181.370000px;}
.h20{height:17.100000px;}
.h25{height:17.137500px;}
.h22{height:17.400000px;}
.h23{height:17.437500px;}
.hb{height:24.885000px;}
.h13{height:29.700000px;}
.h2{height:33.000000px;}
.h21{height:34.500000px;}
.h11{height:35.806641px;}
.h8{height:36.000000px;}
.h1c{height:36.600000px;}
.h1a{height:38.625000px;}
.h1e{height:42.333984px;}
.h1b{height:43.388672px;}
.h12{height:43.453125px;}
.h1f{height:43.681641px;}
.hd{height:44.179688px;}
.ha{height:45.000000px;}
.h18{height:46.350000px;}
.h16{height:47.742188px;}
.h1d{height:48.281250px;}
.h19{height:49.453125px;}
.h24{height:51.900000px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.h17{height:57.290625px;}
.hf{height:59.677734px;}
.h10{height:61.435547px;}
.he{height:63.000000px;}
.h5{height:67.579102px;}
.h6{height:71.613281px;}
.h14{height:73.722656px;}
.h7{height:121.537500px;}
.hc{height:154.545000px;}
.h15{height:396.720000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w3{width:74.700000px;}
.wc{width:123.637500px;}
.wb{width:123.937500px;}
.w5{width:151.845000px;}
.w10{width:186.030000px;}
.wd{width:186.045000px;}
.we{width:186.075000px;}
.wf{width:186.375000px;}
.w8{width:223.275000px;}
.wa{width:248.475000px;}
.w9{width:523.950000px;}
.w6{width:595.695000px;}
.w2{width:673.725000px;}
.w7{width:747.525000px;}
.w4{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:7.500000px;}
.x2{left:8.700000px;}
.x11{left:12.600000px;}
.xc{left:68.400000px;}
.x1{left:72.337500px;}
.x4{left:81.037487px;}
.x5{left:98.137500px;}
.x12{left:108.037487px;}
.xe{left:110.137500px;}
.x13{left:135.037487px;}
.x17{left:197.775000px;}
.x24{left:212.774987px;}
.xf{left:215.182500px;}
.x6{left:224.775000px;}
.x21{left:228.674987px;}
.x1d{left:231.074987px;}
.x1f{left:249.074987px;}
.x14{left:259.874987px;}
.x23{left:268.574987px;}
.x9{left:288.675000px;}
.x10{left:296.220000px;}
.xd{left:314.167500px;}
.x15{left:322.320000px;}
.x1b{left:329.204987px;}
.x7{left:348.105000px;}
.x8{left:367.320000px;}
.xb{left:373.612500px;}
.x19{left:446.850000px;}
.xa{left:455.850000px;}
.x16{left:571.395000px;}
.x1c{left:629.324987px;}
.x25{left:633.825000px;}
.x1e{left:654.824987px;}
.x22{left:677.624987px;}
.x20{left:679.424987px;}
.x1a{left:696.225000px;}
.x3{left:746.070000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls16{letter-spacing:-1.280000pt;}
.ls18{letter-spacing:-1.066667pt;}
.ls17{letter-spacing:-0.533333pt;}
.ls8{letter-spacing:-0.384000pt;}
.lsd{letter-spacing:-0.373333pt;}
.ls19{letter-spacing:-0.213333pt;}
.ls6{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.053333pt;}
.lsb{letter-spacing:0.106667pt;}
.ls2{letter-spacing:0.122667pt;}
.ls10{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.197333pt;}
.lsc{letter-spacing:0.213333pt;}
.ls1{letter-spacing:0.245333pt;}
.ls5{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.346667pt;}
.ls4{letter-spacing:0.373333pt;}
.ls3{letter-spacing:0.426667pt;}
.ls13{letter-spacing:0.480000pt;}
.lse{letter-spacing:0.533333pt;}
.ls12{letter-spacing:0.586667pt;}
.ls15{letter-spacing:1.066667pt;}
.ls11{letter-spacing:1.120000pt;}
.ls14{letter-spacing:13.973333pt;}
.lsa{letter-spacing:40.640000pt;}
.ls9{letter-spacing:56.640000pt;}
.ws4{word-spacing:-53.333333pt;}
.ws0{word-spacing:-14.720000pt;}
.ws8{word-spacing:-13.706667pt;}
.ws6{word-spacing:-13.546667pt;}
.ws5{word-spacing:-13.440000pt;}
.ws1{word-spacing:-13.333333pt;}
.ws7{word-spacing:-12.960000pt;}
.ws9{word-spacing:-12.266667pt;}
.ws2{word-spacing:-12.053333pt;}
.ws3{word-spacing:0.000000pt;}
._1a{margin-left:-7.925333pt;}
._16{margin-left:-6.613333pt;}
._1d{margin-left:-5.546667pt;}
._4{margin-left:-4.586667pt;}
._3{margin-left:-3.072000pt;}
._2{margin-left:-1.866667pt;}
._0{margin-left:-0.960000pt;}
._1{width:0.992000pt;}
._11{width:2.048000pt;}
._5{width:2.976000pt;}
._9{width:4.149333pt;}
._10{width:5.130667pt;}
._d{width:6.880000pt;}
._c{width:8.266667pt;}
._b{width:9.280000pt;}
._8{width:10.933333pt;}
._15{width:12.426667pt;}
._a{width:14.720000pt;}
._7{width:16.192000pt;}
._6{width:17.781333pt;}
._19{width:18.858667pt;}
._18{width:19.808000pt;}
._1c{width:21.088000pt;}
._12{width:22.666667pt;}
._1b{width:24.480000pt;}
._14{width:26.421333pt;}
._13{width:27.626667pt;}
._e{width:29.088000pt;}
._f{width:30.197333pt;}
._17{width:66.346667pt;}
.fs6{font-size:32.000000pt;}
.fs3{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs7{font-size:51.200000pt;}
.fs4{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y19{bottom:0.266667pt;}
.y42{bottom:2.933333pt;}
.y3{bottom:3.200000pt;}
.ya0{bottom:3.213333pt;}
.y47{bottom:3.480000pt;}
.y17{bottom:4.266667pt;}
.ye{bottom:8.533333pt;}
.y45{bottom:9.333333pt;}
.y9d{bottom:10.666667pt;}
.yf9{bottom:10.946667pt;}
.y1a{bottom:11.200000pt;}
.yc{bottom:12.266667pt;}
.y4{bottom:15.466667pt;}
.y2{bottom:17.866667pt;}
.y41{bottom:18.386667pt;}
.y9c{bottom:18.400000pt;}
.y46{bottom:19.746667pt;}
.y44{bottom:22.413333pt;}
.y16{bottom:22.666667pt;}
.yaf{bottom:26.133333pt;}
.yb{bottom:26.933333pt;}
.y40{bottom:33.586667pt;}
.yb0{bottom:33.866667pt;}
.y5{bottom:34.966667pt;}
.y15{bottom:40.266667pt;}
.ya{bottom:41.333333pt;}
.y14{bottom:48.800000pt;}
.y3f{bottom:49.053333pt;}
.y1{bottom:54.966667pt;}
.y13{bottom:62.400000pt;}
.y3e{bottom:64.293333pt;}
.y9{bottom:65.333333pt;}
.y12{bottom:79.200000pt;}
.y3d{bottom:79.760000pt;}
.y8{bottom:82.666667pt;}
.y3c{bottom:94.960000pt;}
.y7{bottom:98.666667pt;}
.y136{bottom:99.233333pt;}
.yc8{bottom:99.500000pt;}
.ye5{bottom:100.833333pt;}
.y11{bottom:101.866667pt;}
.y2b{bottom:102.693333pt;}
.y59{bottom:109.100000pt;}
.y3b{bottom:110.426667pt;}
.yc7{bottom:112.300000pt;}
.y97{bottom:113.633333pt;}
.y135{bottom:114.700000pt;}
.ye4{bottom:116.033333pt;}
.y2a{bottom:116.293333pt;}
.y10{bottom:124.026667pt;}
.y58{bottom:124.300000pt;}
.y3a{bottom:125.626667pt;}
.yc6{bottom:128.300000pt;}
.y96{bottom:129.100000pt;}
.y108{bottom:129.366667pt;}
.y134{bottom:129.900000pt;}
.ye3{bottom:131.500000pt;}
.y29{bottom:132.293333pt;}
.y57{bottom:139.773333pt;}
.y39{bottom:141.093333pt;}
.yc5{bottom:144.293333pt;}
.y95{bottom:144.306667pt;}
.y107{bottom:144.560000pt;}
.y133{bottom:145.373333pt;}
.ye2{bottom:146.693333pt;}
.y28{bottom:147.493333pt;}
.y56{bottom:154.960000pt;}
.y38{bottom:156.293333pt;}
.y94{bottom:159.773333pt;}
.y106{bottom:160.040000pt;}
.yc4{bottom:160.293333pt;}
.y132{bottom:160.560000pt;}
.ye1{bottom:162.160000pt;}
.y27{bottom:162.960000pt;}
.y55{bottom:170.426667pt;}
.y37{bottom:171.760000pt;}
.y93{bottom:174.973333pt;}
.y105{bottom:175.226667pt;}
.y131{bottom:176.026667pt;}
.ye0{bottom:177.360000pt;}
.y26{bottom:178.693333pt;}
.yc3{bottom:179.533333pt;}
.y54{bottom:185.666667pt;}
.y36{bottom:186.960000pt;}
.y92{bottom:190.466667pt;}
.y104{bottom:190.733333pt;}
.y130{bottom:191.266667pt;}
.ydf{bottom:192.866667pt;}
.y25{bottom:194.160000pt;}
.yc2{bottom:194.733333pt;}
.y53{bottom:201.133333pt;}
.y35{bottom:202.453333pt;}
.y91{bottom:205.666667pt;}
.y103{bottom:205.933333pt;}
.y12f{bottom:206.733333pt;}
.yde{bottom:208.066667pt;}
.y24{bottom:209.653333pt;}
.yc1{bottom:210.200000pt;}
.y52{bottom:216.333333pt;}
.y34{bottom:217.653333pt;}
.y90{bottom:221.133333pt;}
.y102{bottom:221.400000pt;}
.y12e{bottom:221.933333pt;}
.ydd{bottom:223.533333pt;}
.y23{bottom:225.120000pt;}
.yc0{bottom:225.400000pt;}
.y51{bottom:231.800000pt;}
.y33{bottom:233.120000pt;}
.y8f{bottom:236.333333pt;}
.y101{bottom:236.600000pt;}
.y12d{bottom:237.400000pt;}
.ydc{bottom:238.733333pt;}
.y22{bottom:240.586667pt;}
.ybf{bottom:240.866667pt;}
.y50{bottom:247.000000pt;}
.y32{bottom:248.320000pt;}
.y8e{bottom:251.800000pt;}
.y100{bottom:252.066667pt;}
.y12c{bottom:252.600000pt;}
.ydb{bottom:254.200000pt;}
.y21{bottom:256.053333pt;}
.ybe{bottom:256.066667pt;}
.y4f{bottom:262.466667pt;}
.y31{bottom:263.786667pt;}
.y8d{bottom:267.000000pt;}
.yff{bottom:267.266667pt;}
.y12b{bottom:268.066667pt;}
.yda{bottom:269.400000pt;}
.y20{bottom:271.520000pt;}
.ybd{bottom:271.533333pt;}
.y4e{bottom:277.666667pt;}
.y30{bottom:278.986667pt;}
.y8c{bottom:282.466667pt;}
.yfe{bottom:282.733333pt;}
.y12a{bottom:283.266667pt;}
.yd9{bottom:284.866667pt;}
.ybc{bottom:286.733333pt;}
.y1f{bottom:286.986667pt;}
.y4d{bottom:293.133333pt;}
.y2f{bottom:294.466667pt;}
.yfd{bottom:295.533333pt;}
.y8b{bottom:297.666667pt;}
.y129{bottom:298.733333pt;}
.yd8{bottom:300.066667pt;}
.ybb{bottom:302.200000pt;}
.y1e{bottom:302.453333pt;}
.y4c{bottom:308.333333pt;}
.y2e{bottom:309.653333pt;}
.yfc{bottom:311.533333pt;}
.y8a{bottom:313.133333pt;}
.y128{bottom:313.933333pt;}
.yd7{bottom:315.533333pt;}
.yba{bottom:317.400000pt;}
.y4b{bottom:323.800000pt;}
.y2d{bottom:325.133333pt;}
.y1d{bottom:326.720000pt;}
.yfb{bottom:327.560000pt;}
.y89{bottom:328.373333pt;}
.y127{bottom:329.426667pt;}
.yd6{bottom:330.773333pt;}
.yb9{bottom:333.706667pt;}
.y4a{bottom:339.026667pt;}
.y2c{bottom:340.320000pt;}
.y1c{bottom:342.466667pt;}
.yfa{bottom:343.560000pt;}
.y88{bottom:343.840000pt;}
.y126{bottom:344.626667pt;}
.yd5{bottom:346.226667pt;}
.yb8{bottom:349.960000pt;}
.y49{bottom:354.506667pt;}
.y87{bottom:359.040000pt;}
.yf8{bottom:359.560000pt;}
.y125{bottom:360.093333pt;}
.yd4{bottom:361.440000pt;}
.yb7{bottom:365.440000pt;}
.y48{bottom:370.226667pt;}
.y86{bottom:374.506667pt;}
.y124{bottom:375.293333pt;}
.yd3{bottom:376.893333pt;}
.yb6{bottom:380.626667pt;}
.y43{bottom:383.026667pt;}
.y85{bottom:389.693333pt;}
.y123{bottom:390.773333pt;}
.yf7{bottom:391.026667pt;}
.yd2{bottom:392.106667pt;}
.yb5{bottom:396.093333pt;}
.y84{bottom:405.173333pt;}
.y122{bottom:405.960000pt;}
.yf6{bottom:407.026667pt;}
.yd1{bottom:407.560000pt;}
.yb4{bottom:408.893333pt;}
.y1b{bottom:415.573333pt;}
.yd0{bottom:419.840000pt;}
.y83{bottom:420.360000pt;}
.y121{bottom:421.440000pt;}
.yb3{bottom:424.893333pt;}
.yf5{bottom:425.960000pt;}
.y82{bottom:435.840000pt;}
.y120{bottom:436.626667pt;}
.yf4{bottom:441.426667pt;}
.y81{bottom:451.026667pt;}
.y11f{bottom:452.093333pt;}
.yb2{bottom:456.360000pt;}
.yf3{bottom:456.626667pt;}
.y80{bottom:466.506667pt;}
.y11e{bottom:467.293333pt;}
.yf2{bottom:472.133333pt;}
.yb1{bottom:472.400000pt;}
.y7f{bottom:481.733333pt;}
.y11d{bottom:482.800000pt;}
.yf1{bottom:487.333333pt;}
.y7e{bottom:497.200000pt;}
.y11c{bottom:498.000000pt;}
.yf0{bottom:502.800000pt;}
.yae{bottom:503.600000pt;}
.y7d{bottom:512.400000pt;}
.y11b{bottom:513.466667pt;}
.yef{bottom:518.000000pt;}
.y7c{bottom:527.866667pt;}
.y11a{bottom:528.666667pt;}
.yee{bottom:530.266667pt;}
.y7b{bottom:543.066667pt;}
.y119{bottom:544.133333pt;}
.yad{bottom:550.266667pt;}
.y7a{bottom:558.533333pt;}
.y118{bottom:559.333333pt;}
.yac{bottom:566.266667pt;}
.y79{bottom:573.733333pt;}
.y117{bottom:574.800000pt;}
.yab{bottom:585.466667pt;}
.y78{bottom:589.200000pt;}
.y116{bottom:590.000000pt;}
.yaa{bottom:600.666667pt;}
.y77{bottom:604.400000pt;}
.y115{bottom:605.466667pt;}
.ya9{bottom:616.173333pt;}
.ycf{bottom:619.640000pt;}
.y76{bottom:619.893333pt;}
.y114{bottom:620.693333pt;}
.ya8{bottom:631.360000pt;}
.y75{bottom:635.093333pt;}
.y113{bottom:636.173333pt;}
.ya7{bottom:646.840000pt;}
.yce{bottom:650.293333pt;}
.y74{bottom:650.560000pt;}
.y112{bottom:651.360000pt;}
.ya6{bottom:662.026667pt;}
.y73{bottom:665.773333pt;}
.y111{bottom:666.826667pt;}
.ya5{bottom:677.493333pt;}
.ycd{bottom:680.973333pt;}
.y72{bottom:681.226667pt;}
.y110{bottom:682.026667pt;}
.ya4{bottom:692.693333pt;}
.y71{bottom:696.426667pt;}
.y10f{bottom:697.506667pt;}
.ya3{bottom:708.173333pt;}
.ycc{bottom:711.626667pt;}
.y70{bottom:711.893333pt;}
.y10e{bottom:712.706667pt;}
.yed{bottom:718.293333pt;}
.ya2{bottom:723.373333pt;}
.y6f{bottom:727.106667pt;}
.y10d{bottom:728.173333pt;}
.yec{bottom:733.506667pt;}
.ya1{bottom:738.840000pt;}
.ycb{bottom:742.293333pt;}
.y6e{bottom:742.560000pt;}
.y10c{bottom:743.373333pt;}
.yeb{bottom:748.960000pt;}
.y9f{bottom:751.626667pt;}
.y6d{bottom:757.760000pt;}
.y10b{bottom:758.840000pt;}
.yea{bottom:764.200000pt;}
.y9e{bottom:767.666667pt;}
.y18{bottom:768.200000pt;}
.y6c{bottom:773.000000pt;}
.y10a{bottom:774.066667pt;}
.ye9{bottom:779.666667pt;}
.y9b{bottom:783.666667pt;}
.y6b{bottom:788.466667pt;}
.y109{bottom:789.533333pt;}
.yf{bottom:794.600000pt;}
.ye8{bottom:794.866667pt;}
.yca{bottom:803.666667pt;}
.y6a{bottom:804.733333pt;}
.ye7{bottom:810.333333pt;}
.y9a{bottom:815.133333pt;}
.yc9{bottom:815.933333pt;}
.y69{bottom:820.200000pt;}
.ye6{bottom:822.600000pt;}
.y99{bottom:831.133333pt;}
.y68{bottom:835.400000pt;}
.y98{bottom:847.133333pt;}
.y67{bottom:850.866667pt;}
.y66{bottom:866.066667pt;}
.y65{bottom:881.533333pt;}
.y64{bottom:896.733333pt;}
.y63{bottom:912.226667pt;}
.y62{bottom:927.426667pt;}
.yd{bottom:931.973333pt;}
.y61{bottom:942.893333pt;}
.y6{bottom:954.360000pt;}
.y60{bottom:958.106667pt;}
.y5f{bottom:973.560000pt;}
.y5e{bottom:988.773333pt;}
.y5d{bottom:1004.226667pt;}
.y5c{bottom:1019.426667pt;}
.y5b{bottom:1034.893333pt;}
.y5a{bottom:1050.106667pt;}
.h20{height:15.200000pt;}
.h25{height:15.233333pt;}
.h22{height:15.466667pt;}
.h23{height:15.500000pt;}
.hb{height:22.120000pt;}
.h13{height:26.400000pt;}
.h2{height:29.333333pt;}
.h21{height:30.666667pt;}
.h11{height:31.828125pt;}
.h8{height:32.000000pt;}
.h1c{height:32.533333pt;}
.h1a{height:34.333333pt;}
.h1e{height:37.630208pt;}
.h1b{height:38.567708pt;}
.h12{height:38.625000pt;}
.h1f{height:38.828125pt;}
.hd{height:39.270833pt;}
.ha{height:40.000000pt;}
.h18{height:41.200000pt;}
.h16{height:42.437500pt;}
.h1d{height:42.916667pt;}
.h19{height:43.958333pt;}
.h24{height:46.133333pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.h17{height:50.925000pt;}
.hf{height:53.046875pt;}
.h10{height:54.609375pt;}
.he{height:56.000000pt;}
.h5{height:60.070312pt;}
.h6{height:63.656250pt;}
.h14{height:65.531250pt;}
.h7{height:108.033333pt;}
.hc{height:137.373333pt;}
.h15{height:352.640000pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.400000pt;}
.wc{width:109.900000pt;}
.wb{width:110.166667pt;}
.w5{width:134.973333pt;}
.w10{width:165.360000pt;}
.wd{width:165.373333pt;}
.we{width:165.400000pt;}
.wf{width:165.666667pt;}
.w8{width:198.466667pt;}
.wa{width:220.866667pt;}
.w9{width:465.733333pt;}
.w6{width:529.506667pt;}
.w2{width:598.866667pt;}
.w7{width:664.466667pt;}
.w4{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:6.666667pt;}
.x2{left:7.733333pt;}
.x11{left:11.200000pt;}
.xc{left:60.800000pt;}
.x1{left:64.300000pt;}
.x4{left:72.033322pt;}
.x5{left:87.233333pt;}
.x12{left:96.033322pt;}
.xe{left:97.900000pt;}
.x13{left:120.033322pt;}
.x17{left:175.800000pt;}
.x24{left:189.133322pt;}
.xf{left:191.273333pt;}
.x6{left:199.800000pt;}
.x21{left:203.266655pt;}
.x1d{left:205.399988pt;}
.x1f{left:221.399988pt;}
.x14{left:230.999988pt;}
.x23{left:238.733322pt;}
.x9{left:256.600000pt;}
.x10{left:263.306667pt;}
.xd{left:279.260000pt;}
.x15{left:286.506667pt;}
.x1b{left:292.626655pt;}
.x7{left:309.426667pt;}
.x8{left:326.506667pt;}
.xb{left:332.100000pt;}
.x19{left:397.200000pt;}
.xa{left:405.200000pt;}
.x16{left:507.906667pt;}
.x1c{left:559.399988pt;}
.x25{left:563.400000pt;}
.x1e{left:582.066655pt;}
.x22{left:602.333322pt;}
.x20{left:603.933322pt;}
.x1a{left:618.866667pt;}
.x3{left:663.173333pt;}
}




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