
    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_2068ea5573162d0ac77a97e4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120117;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_fdf5ace27465f3e2e83af3c0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.101074;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_32bc828d0a5b8030739203b5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.109863;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_3a4b125bbf07b120163bc326.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.922363;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_72cbf7e8caf78ae336f76d6f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_c54049342dfaec10848cd9e3.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_8f72c47f9631c5c237ec997e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.101074;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_9600be4a7da1b6216eaf7168.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.120117;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_c770061e492608cb605022c9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914551;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_b726a468fc4d6b78d605e666.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.012695;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_bee6be787415d47028a9954e.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.019531;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_7d150e1d36eda23a7e852e14.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.012695;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_46372d4628bab2baaa821788.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938477;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_885d933249b289210530abc7.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.978027;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;}
.m1{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,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);}
.m2{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:-6.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:6.000000px;}
.v4{vertical-align:19.980000px;}
.v1{vertical-align:21.978000px;}
.ls5{letter-spacing:-1.920000px;}
.lsb{letter-spacing:-1.680000px;}
.lse{letter-spacing:-1.536000px;}
.ls4{letter-spacing:-1.200000px;}
.ls9{letter-spacing:-0.960000px;}
.ls3{letter-spacing:-0.900000px;}
.lsc{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.576000px;}
.lsd{letter-spacing:-0.480000px;}
.ls10{letter-spacing:-0.240000px;}
.ls7{letter-spacing:-0.192000px;}
.lsa{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.000600px;}
.ls6{letter-spacing:0.001920px;}
.ls11{letter-spacing:0.480000px;}
.ls2{letter-spacing:0.855000px;}
.ls1{letter-spacing:2.448000px;}
.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:-17.208000px;}
.ws2a{word-spacing:-13.680000px;}
.ws1{word-spacing:-12.048000px;}
.ws5f{word-spacing:-11.808000px;}
.ws2{word-spacing:-11.472000px;}
.ws43{word-spacing:-11.328000px;}
.ws0{word-spacing:-11.295000px;}
.ws4e{word-spacing:-11.088000px;}
.ws38{word-spacing:-10.848000px;}
.ws5c{word-spacing:-10.608000px;}
.ws5d{word-spacing:-10.512000px;}
.ws37{word-spacing:-10.368000px;}
.ws5{word-spacing:-10.128000px;}
.ws3{word-spacing:-9.657978px;}
.ws34{word-spacing:-4.800000px;}
.ws1f{word-spacing:-3.480000px;}
.wse{word-spacing:-3.420000px;}
.ws40{word-spacing:-3.360000px;}
.wsc{word-spacing:-2.160000px;}
.ws45{word-spacing:-1.860000px;}
.ws17{word-spacing:-1.800000px;}
.ws3d{word-spacing:-1.740000px;}
.ws9{word-spacing:-1.392000px;}
.ws4b{word-spacing:-1.380000px;}
.ws15{word-spacing:-1.350000px;}
.ws4d{word-spacing:-1.260000px;}
.ws54{word-spacing:-1.200000px;}
.ws8{word-spacing:-1.152000px;}
.wsb{word-spacing:-1.104000px;}
.ws7{word-spacing:-1.080000px;}
.ws5e{word-spacing:-0.960000px;}
.wsd{word-spacing:-0.912000px;}
.ws5a{word-spacing:-0.900000px;}
.ws25{word-spacing:-0.864000px;}
.ws33{word-spacing:-0.840000px;}
.ws28{word-spacing:-0.816000px;}
.ws47{word-spacing:-0.780000px;}
.ws26{word-spacing:-0.768000px;}
.wsa{word-spacing:-0.720000px;}
.ws24{word-spacing:-0.684000px;}
.ws23{word-spacing:-0.540000px;}
.ws18{word-spacing:-0.420000px;}
.ws27{word-spacing:-0.384000px;}
.wsf{word-spacing:-0.300000px;}
.ws41{word-spacing:-0.120000px;}
.ws6{word-spacing:0.000000px;}
.ws58{word-spacing:0.060000px;}
.ws22{word-spacing:0.180000px;}
.ws51{word-spacing:0.240000px;}
.ws4c{word-spacing:0.300000px;}
.ws44{word-spacing:0.360000px;}
.ws35{word-spacing:0.480000px;}
.ws36{word-spacing:0.660000px;}
.ws10{word-spacing:0.840000px;}
.ws39{word-spacing:0.960000px;}
.ws1d{word-spacing:1.020000px;}
.ws29{word-spacing:1.200000px;}
.ws3b{word-spacing:1.380000px;}
.ws1a{word-spacing:1.500000px;}
.ws19{word-spacing:1.920000px;}
.ws3e{word-spacing:2.220000px;}
.ws4a{word-spacing:2.280000px;}
.ws11{word-spacing:2.520000px;}
.ws13{word-spacing:2.760000px;}
.ws48{word-spacing:2.820000px;}
.ws2f{word-spacing:3.600000px;}
.ws49{word-spacing:3.720000px;}
.ws14{word-spacing:3.780000px;}
.ws50{word-spacing:3.960000px;}
.ws12{word-spacing:4.020000px;}
.ws5b{word-spacing:4.320000px;}
.ws56{word-spacing:4.380000px;}
.ws3c{word-spacing:4.680000px;}
.ws52{word-spacing:5.100000px;}
.ws30{word-spacing:5.160000px;}
.ws1b{word-spacing:5.280000px;}
.ws3f{word-spacing:5.340000px;}
.ws53{word-spacing:5.520000px;}
.ws3a{word-spacing:5.700000px;}
.ws2b{word-spacing:6.360000px;}
.ws1c{word-spacing:6.420000px;}
.ws57{word-spacing:6.780000px;}
.ws1e{word-spacing:6.960000px;}
.ws2e{word-spacing:7.080000px;}
.ws16{word-spacing:7.140000px;}
.ws20{word-spacing:7.200000px;}
.ws2c{word-spacing:7.320000px;}
.ws2d{word-spacing:7.380000px;}
.ws55{word-spacing:7.620000px;}
.ws4f{word-spacing:7.800000px;}
.ws31{word-spacing:9.840000px;}
.ws46{word-spacing:9.900000px;}
.ws32{word-spacing:12.300000px;}
.ws59{word-spacing:13.500000px;}
.ws21{word-spacing:14.940000px;}
.ws42{word-spacing:16.440000px;}
._11{margin-left:-6.014400px;}
._4{margin-left:-4.876800px;}
._2{margin-left:-3.649500px;}
._3{margin-left:-2.448000px;}
._0{margin-left:-1.345500px;}
._1{width:1.084500px;}
._7{width:2.401500px;}
._8{width:3.426000px;}
._6{width:5.082000px;}
._a{width:6.228000px;}
._9{width:7.668000px;}
._5{width:8.701800px;}
._b{width:10.018200px;}
._c{width:11.238000px;}
._d{width:12.540000px;}
._f{width:14.916000px;}
._e{width:16.050000px;}
._10{width:17.358000px;}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(85,85,85);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,103,155);}
.fs7{font-size:34.980000px;}
.fs6{font-size:36.000000px;}
.fs3{font-size:38.478000px;}
.fs0{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs5{font-size:58.800000px;}
.fs4{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y6a{bottom:10.052550px;}
.y69{bottom:10.113000px;}
.y187{bottom:75.914250px;}
.yea{bottom:90.914250px;}
.y186{bottom:92.414250px;}
.y10f{bottom:94.595100px;}
.y3c{bottom:96.247950px;}
.yc9{bottom:96.383550px;}
.yc8{bottom:107.183550px;}
.ya1{bottom:107.414250px;}
.yef{bottom:107.834700px;}
.ye9{bottom:108.914250px;}
.y3b{bottom:110.647950px;}
.y10e{bottom:112.595100px;}
.yf6{bottom:116.403750px;}
.y185{bottom:116.414250px;}
.yee{bottom:119.834700px;}
.y3a{bottom:125.048100px;}
.ya0{bottom:125.414250px;}
.yb4{bottom:125.752050px;}
.ye8{bottom:126.914250px;}
.yf5{bottom:127.203750px;}
.y10d{bottom:130.595100px;}
.yed{bottom:131.834700px;}
.y131{bottom:132.425100px;}
.y184{bottom:132.914250px;}
.y66{bottom:134.068500px;}
.y1bb{bottom:134.823000px;}
.yb3{bottom:137.752050px;}
.yf4{bottom:138.003750px;}
.y39{bottom:139.447950px;}
.y9f{bottom:143.414250px;}
.ye7{bottom:144.914250px;}
.y10c{bottom:148.595100px;}
.y183{bottom:149.414250px;}
.yb2{bottom:149.752050px;}
.y130{bottom:150.425100px;}
.y1ba{bottom:151.323000px;}
.yec{bottom:151.334700px;}
.y65{bottom:152.068500px;}
.y38{bottom:153.847950px;}
.y161{bottom:155.414250px;}
.y9e{bottom:161.414250px;}
.yb1{bottom:161.752050px;}
.ye6{bottom:162.914250px;}
.y10b{bottom:166.595100px;}
.y1b9{bottom:167.823000px;}
.y37{bottom:168.247950px;}
.y12f{bottom:168.425100px;}
.y64{bottom:170.068500px;}
.yeb{bottom:170.834700px;}
.y160{bottom:173.414250px;}
.yb0{bottom:173.752050px;}
.y9d{bottom:179.414250px;}
.ye5{bottom:180.914250px;}
.y36{bottom:182.647950px;}
.y10a{bottom:184.595100px;}
.yaf{bottom:185.752050px;}
.y12e{bottom:186.425100px;}
.y182{bottom:189.914250px;}
.y15f{bottom:191.414250px;}
.y1b8{bottom:191.823000px;}
.y9c{bottom:197.414250px;}
.yae{bottom:197.752050px;}
.ye4{bottom:198.914250px;}
.y109{bottom:202.595100px;}
.y12d{bottom:204.425100px;}
.y63{bottom:204.568500px;}
.y1b7{bottom:208.323000px;}
.y15e{bottom:209.414250px;}
.yad{bottom:209.752050px;}
.y181{bottom:213.914250px;}
.y9b{bottom:215.414250px;}
.y108{bottom:220.595100px;}
.yac{bottom:221.752050px;}
.y12c{bottom:222.425100px;}
.y62{bottom:222.568500px;}
.ye3{bottom:224.414250px;}
.y15d{bottom:227.414250px;}
.y180{bottom:230.414250px;}
.y1b6{bottom:232.323000px;}
.y9a{bottom:233.414250px;}
.yab{bottom:233.752050px;}
.y107{bottom:238.595100px;}
.y12b{bottom:240.425100px;}
.y61{bottom:240.568500px;}
.ye2{bottom:242.414250px;}
.y15c{bottom:245.414250px;}
.yaa{bottom:245.752050px;}
.y17f{bottom:246.914250px;}
.y1b5{bottom:248.823000px;}
.y99{bottom:251.414250px;}
.ya9{bottom:257.752050px;}
.y12a{bottom:258.425100px;}
.y60{bottom:258.568500px;}
.ye1{bottom:260.414250px;}
.y35{bottom:261.138150px;}
.y15b{bottom:263.414250px;}
.y106{bottom:268.432500px;}
.y98{bottom:269.414250px;}
.ya8{bottom:269.752050px;}
.y17e{bottom:270.914250px;}
.y1b4{bottom:272.823000px;}
.y34{bottom:275.538150px;}
.y129{bottom:276.425100px;}
.y5f{bottom:276.568500px;}
.ye0{bottom:278.414250px;}
.y105{bottom:279.232500px;}
.ya7{bottom:281.752050px;}
.y97{bottom:287.414250px;}
.y1b3{bottom:289.323000px;}
.y33{bottom:289.938150px;}
.ya6{bottom:293.752050px;}
.y128{bottom:294.425100px;}
.y5e{bottom:294.568500px;}
.ydf{bottom:296.414250px;}
.y15a{bottom:297.914250px;}
.y32{bottom:304.338300px;}
.y96{bottom:305.414250px;}
.ya5{bottom:305.752050px;}
.y17d{bottom:311.414250px;}
.y127{bottom:312.425100px;}
.y5d{bottom:312.568500px;}
.y1b2{bottom:313.323000px;}
.yde{bottom:314.414250px;}
.y159{bottom:315.914250px;}
.ya4{bottom:317.752050px;}
.y31{bottom:318.738150px;}
.y17c{bottom:327.914250px;}
.ya3{bottom:329.752050px;}
.y1b1{bottom:329.823000px;}
.y126{bottom:330.425100px;}
.y5c{bottom:330.568500px;}
.y95{bottom:330.914250px;}
.ydd{bottom:332.414250px;}
.y30{bottom:333.138150px;}
.y158{bottom:333.914250px;}
.ya2{bottom:341.752050px;}
.y17b{bottom:344.414250px;}
.y2f{bottom:347.538150px;}
.y125{bottom:348.425100px;}
.y5b{bottom:348.568500px;}
.y94{bottom:348.914250px;}
.ydc{bottom:350.414250px;}
.y157{bottom:351.914250px;}
.y1b0{bottom:353.823000px;}
.y2e{bottom:361.938150px;}
.y5a{bottom:366.568500px;}
.y93{bottom:366.914250px;}
.ydb{bottom:368.414250px;}
.y156{bottom:369.914250px;}
.y1af{bottom:370.323000px;}
.y124{bottom:373.925250px;}
.y2d{bottom:376.338150px;}
.y59{bottom:384.568500px;}
.y92{bottom:384.914250px;}
.yda{bottom:386.414250px;}
.y1ae{bottom:386.823000px;}
.y155{bottom:387.914250px;}
.y2c{bottom:390.738150px;}
.y123{bottom:391.925250px;}
.y17a{bottom:401.414250px;}
.y58{bottom:402.568500px;}
.y91{bottom:402.914250px;}
.y2b{bottom:405.138150px;}
.y122{bottom:409.925250px;}
.y1ad{bottom:410.823000px;}
.yd9{bottom:411.914250px;}
.y154{bottom:413.414250px;}
.y2a{bottom:419.538150px;}
.y57{bottom:420.568500px;}
.y90{bottom:420.914250px;}
.y179{bottom:425.414250px;}
.y1ac{bottom:427.323000px;}
.y121{bottom:427.925250px;}
.yd8{bottom:429.914250px;}
.y153{bottom:431.414250px;}
.y29{bottom:433.938150px;}
.y8f{bottom:438.914250px;}
.y178{bottom:441.914250px;}
.y1ab{bottom:443.823000px;}
.y120{bottom:445.925250px;}
.y56{bottom:447.568500px;}
.yd7{bottom:447.914250px;}
.y28{bottom:448.338150px;}
.y152{bottom:449.414250px;}
.y8e{bottom:456.914250px;}
.y177{bottom:458.414250px;}
.y27{bottom:462.738150px;}
.y11f{bottom:463.925250px;}
.y55{bottom:465.568500px;}
.yd6{bottom:465.914250px;}
.y151{bottom:467.414250px;}
.y1aa{bottom:467.823000px;}
.y8d{bottom:474.914250px;}
.y26{bottom:477.138150px;}
.y11e{bottom:481.925250px;}
.y104{bottom:482.414250px;}
.y54{bottom:483.208500px;}
.yd5{bottom:483.914250px;}
.y1a9{bottom:484.323000px;}
.y150{bottom:485.414250px;}
.y25{bottom:491.538150px;}
.y8c{bottom:492.914250px;}
.y176{bottom:498.914250px;}
.y11d{bottom:499.925250px;}
.y103{bottom:500.414250px;}
.y1a8{bottom:500.823000px;}
.yd4{bottom:501.914250px;}
.y14f{bottom:503.414250px;}
.y24{bottom:505.938150px;}
.y8b{bottom:510.914250px;}
.y175{bottom:515.414250px;}
.y11c{bottom:517.925250px;}
.y102{bottom:518.414250px;}
.yd3{bottom:519.914250px;}
.y23{bottom:520.338150px;}
.y14e{bottom:521.414250px;}
.y1a7{bottom:524.823000px;}
.yf3{bottom:526.771650px;}
.y8a{bottom:528.914250px;}
.y22{bottom:534.738150px;}
.y11b{bottom:535.925250px;}
.y101{bottom:536.414250px;}
.yf2{bottom:537.571650px;}
.yd2{bottom:537.914250px;}
.y14d{bottom:539.414250px;}
.y1a6{bottom:541.323000px;}
.y53{bottom:544.348500px;}
.y89{bottom:546.914250px;}
.y11a{bottom:553.925250px;}
.y100{bottom:554.414250px;}
.yd1{bottom:555.914250px;}
.y14c{bottom:557.414250px;}
.y1a5{bottom:557.823000px;}
.y52{bottom:562.348500px;}
.yc7{bottom:563.414250px;}
.y21{bottom:564.138150px;}
.y88{bottom:564.914250px;}
.y119{bottom:571.925250px;}
.yff{bottom:572.414250px;}
.yd0{bottom:573.914250px;}
.y14b{bottom:575.414250px;}
.y20{bottom:578.538150px;}
.y51{bottom:580.348500px;}
.yc6{bottom:581.414250px;}
.y1a4{bottom:581.823000px;}
.y87{bottom:582.914250px;}
.yfe{bottom:590.414250px;}
.ycf{bottom:591.914250px;}
.y174{bottom:596.414250px;}
.y118{bottom:597.425250px;}
.y1a3{bottom:598.323000px;}
.yc5{bottom:599.414250px;}
.y14a{bottom:600.914250px;}
.y1f{bottom:601.938150px;}
.y86{bottom:608.414250px;}
.yce{bottom:609.914250px;}
.y173{bottom:612.914250px;}
.y1a2{bottom:614.823000px;}
.y50{bottom:614.848500px;}
.y117{bottom:615.425250px;}
.y1e{bottom:616.338150px;}
.yc4{bottom:617.414250px;}
.y149{bottom:618.914250px;}
.y85{bottom:626.414250px;}
.y4f{bottom:632.848500px;}
.y116{bottom:633.425250px;}
.yfd{bottom:633.914250px;}
.yc3{bottom:635.414250px;}
.y148{bottom:636.914250px;}
.y1a1{bottom:638.823000px;}
.y1d{bottom:639.738150px;}
.y84{bottom:644.414250px;}
.y4e{bottom:650.848500px;}
.y115{bottom:651.425250px;}
.yfc{bottom:651.914250px;}
.yc2{bottom:653.414250px;}
.y1c{bottom:654.138150px;}
.y147{bottom:654.914250px;}
.y1a0{bottom:655.323000px;}
.y83{bottom:662.414250px;}
.y4d{bottom:668.848500px;}
.y114{bottom:669.425250px;}
.yfb{bottom:669.914250px;}
.yc1{bottom:671.414250px;}
.y19f{bottom:671.823000px;}
.y146{bottom:672.914250px;}
.y82{bottom:680.414250px;}
.y4c{bottom:686.848500px;}
.y113{bottom:687.425250px;}
.yfa{bottom:687.914250px;}
.yc0{bottom:689.414250px;}
.y145{bottom:690.914250px;}
.y1b{bottom:691.038150px;}
.y172{bottom:693.914250px;}
.y19e{bottom:695.823000px;}
.y81{bottom:698.414250px;}
.y4b{bottom:704.848500px;}
.y1a{bottom:705.438150px;}
.yf9{bottom:705.914250px;}
.ybf{bottom:707.414250px;}
.y144{bottom:708.914250px;}
.y171{bottom:710.414250px;}
.y19d{bottom:712.323000px;}
.y80{bottom:716.414250px;}
.y112{bottom:718.055400px;}
.y19{bottom:719.838150px;}
.y4a{bottom:722.848500px;}
.yf8{bottom:723.914250px;}
.ybe{bottom:725.414250px;}
.y143{bottom:726.914250px;}
.y19c{bottom:728.823000px;}
.y111{bottom:728.855400px;}
.yf1{bottom:729.275850px;}
.y7f{bottom:734.414250px;}
.y110{bottom:739.655400px;}
.yf0{bottom:740.075850px;}
.y49{bottom:740.848500px;}
.yf7{bottom:741.914250px;}
.ybd{bottom:743.414250px;}
.y18{bottom:749.238150px;}
.y7e{bottom:752.414250px;}
.y19b{bottom:752.823000px;}
.y48{bottom:758.848500px;}
.ycd{bottom:759.914250px;}
.ybc{bottom:761.414250px;}
.y17{bottom:762.738150px;}
.y19a{bottom:769.323000px;}
.y7d{bottom:770.414250px;}
.y47{bottom:776.848500px;}
.ycc{bottom:777.914250px;}
.y16{bottom:783.738150px;}
.y170{bottom:783.914250px;}
.y199{bottom:785.823000px;}
.y142{bottom:788.414250px;}
.y46{bottom:794.848500px;}
.y7c{bottom:795.914250px;}
.y15{bottom:798.138150px;}
.y16f{bottom:800.414250px;}
.y141{bottom:806.414250px;}
.y198{bottom:809.823000px;}
.y14{bottom:811.638150px;}
.y45{bottom:812.848500px;}
.y7b{bottom:813.914250px;}
.y16e{bottom:816.914250px;}
.y140{bottom:824.414250px;}
.y197{bottom:826.323000px;}
.y44{bottom:830.848500px;}
.y7a{bottom:831.914250px;}
.y13{bottom:832.638150px;}
.y16d{bottom:840.914250px;}
.y13f{bottom:842.414250px;}
.y12{bottom:846.138150px;}
.y43{bottom:848.848500px;}
.y79{bottom:849.914250px;}
.y196{bottom:850.323000px;}
.y16c{bottom:857.414250px;}
.y11{bottom:859.638150px;}
.y13e{bottom:860.414250px;}
.y195{bottom:866.823000px;}
.y78{bottom:867.914250px;}
.y10{bottom:873.138150px;}
.y13d{bottom:878.414250px;}
.y16b{bottom:881.414250px;}
.y194{bottom:883.323000px;}
.y77{bottom:885.914250px;}
.yf{bottom:886.638150px;}
.y13c{bottom:896.414250px;}
.y16a{bottom:897.914250px;}
.y76{bottom:903.914250px;}
.y193{bottom:907.323000px;}
.ye{bottom:907.638150px;}
.ycb{bottom:911.414250px;}
.y13b{bottom:914.414250px;}
.yd{bottom:921.138150px;}
.y75{bottom:921.914250px;}
.y192{bottom:923.823000px;}
.yca{bottom:929.414250px;}
.yc{bottom:934.638150px;}
.y169{bottom:938.414250px;}
.ybb{bottom:939.914250px;}
.y191{bottom:940.323000px;}
.y74{bottom:947.414250px;}
.yb{bottom:948.138150px;}
.y42{bottom:952.348500px;}
.yba{bottom:957.914250px;}
.ya{bottom:961.638150px;}
.y168{bottom:962.414250px;}
.y190{bottom:964.323000px;}
.y73{bottom:965.414250px;}
.y41{bottom:972.148500px;}
.y13a{bottom:975.914250px;}
.y167{bottom:978.914250px;}
.y18f{bottom:980.823000px;}
.y9{bottom:982.638150px;}
.y72{bottom:983.414250px;}
.y139{bottom:993.914250px;}
.y8{bottom:996.138150px;}
.y40{bottom:997.948500px;}
.y71{bottom:1001.414250px;}
.y166{bottom:1002.914250px;}
.y18e{bottom:1004.823000px;}
.y138{bottom:1011.914250px;}
.y7{bottom:1017.138150px;}
.y70{bottom:1019.414250px;}
.y3f{bottom:1019.548500px;}
.y18d{bottom:1021.323000px;}
.yb9{bottom:1025.740200px;}
.y137{bottom:1029.914250px;}
.y6{bottom:1030.638150px;}
.y6f{bottom:1037.414250px;}
.y18c{bottom:1037.823000px;}
.y3e{bottom:1041.148500px;}
.y165{bottom:1043.414250px;}
.y136{bottom:1047.914250px;}
.yb8{bottom:1051.540350px;}
.y5{bottom:1051.638150px;}
.y18b{bottom:1054.323000px;}
.y6e{bottom:1055.414250px;}
.y164{bottom:1059.914250px;}
.y3d{bottom:1062.748500px;}
.y4{bottom:1065.138150px;}
.y135{bottom:1065.914250px;}
.yb7{bottom:1065.940200px;}
.y6d{bottom:1073.414250px;}
.y163{bottom:1076.414250px;}
.y18a{bottom:1078.323000px;}
.y3{bottom:1078.638150px;}
.yb6{bottom:1080.340350px;}
.y134{bottom:1083.914250px;}
.y6c{bottom:1091.414250px;}
.y2{bottom:1092.138150px;}
.y162{bottom:1092.914250px;}
.yb5{bottom:1094.740200px;}
.y189{bottom:1094.823000px;}
.y133{bottom:1101.914250px;}
.y1{bottom:1105.638150px;}
.y6b{bottom:1109.414250px;}
.y188{bottom:1111.323000px;}
.y132{bottom:1119.914250px;}
.y67{bottom:1191.394800px;}
.y68{bottom:1213.589100px;}
.h13{height:27.615234px;}
.h12{height:27.650391px;}
.he{height:31.394531px;}
.h14{height:36.820312px;}
.h11{height:36.867188px;}
.h2{height:39.243164px;}
.hd{height:39.550781px;}
.h5{height:41.484375px;}
.h3{height:41.859375px;}
.h4{height:42.187500px;}
.hc{height:42.836719px;}
.ha{height:43.681641px;}
.hb{height:43.710938px;}
.h10{height:45.446396px;}
.h9{height:54.580078px;}
.h7{height:55.533521px;}
.h8{height:55.534121px;}
.hf{height:62.789062px;}
.h6{height:63.281250px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:13.813050px;}
.x7{left:89.250000px;}
.x2{left:90.501000px;}
.x8{left:105.000000px;}
.x6{left:120.000000px;}
.x4{left:172.729800px;}
.x5{left:541.243050px;}
.x1{left:652.914000px;}
@media print{
.v2{vertical-align:-5.333333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:5.333333pt;}
.v4{vertical-align:17.760000pt;}
.v1{vertical-align:19.536000pt;}
.ls5{letter-spacing:-1.706667pt;}
.lsb{letter-spacing:-1.493333pt;}
.lse{letter-spacing:-1.365333pt;}
.ls4{letter-spacing:-1.066667pt;}
.ls9{letter-spacing:-0.853333pt;}
.ls3{letter-spacing:-0.800000pt;}
.lsc{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.512000pt;}
.lsd{letter-spacing:-0.426667pt;}
.ls10{letter-spacing:-0.213333pt;}
.ls7{letter-spacing:-0.170667pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.000533pt;}
.ls6{letter-spacing:0.001707pt;}
.ls11{letter-spacing:0.426667pt;}
.ls2{letter-spacing:0.760000pt;}
.ls1{letter-spacing:2.176000pt;}
.ws4{word-spacing:-15.296000pt;}
.ws2a{word-spacing:-12.160000pt;}
.ws1{word-spacing:-10.709333pt;}
.ws5f{word-spacing:-10.496000pt;}
.ws2{word-spacing:-10.197333pt;}
.ws43{word-spacing:-10.069333pt;}
.ws0{word-spacing:-10.040000pt;}
.ws4e{word-spacing:-9.856000pt;}
.ws38{word-spacing:-9.642667pt;}
.ws5c{word-spacing:-9.429333pt;}
.ws5d{word-spacing:-9.344000pt;}
.ws37{word-spacing:-9.216000pt;}
.ws5{word-spacing:-9.002667pt;}
.ws3{word-spacing:-8.584869pt;}
.ws34{word-spacing:-4.266667pt;}
.ws1f{word-spacing:-3.093333pt;}
.wse{word-spacing:-3.040000pt;}
.ws40{word-spacing:-2.986667pt;}
.wsc{word-spacing:-1.920000pt;}
.ws45{word-spacing:-1.653333pt;}
.ws17{word-spacing:-1.600000pt;}
.ws3d{word-spacing:-1.546667pt;}
.ws9{word-spacing:-1.237333pt;}
.ws4b{word-spacing:-1.226667pt;}
.ws15{word-spacing:-1.200000pt;}
.ws4d{word-spacing:-1.120000pt;}
.ws54{word-spacing:-1.066667pt;}
.ws8{word-spacing:-1.024000pt;}
.wsb{word-spacing:-0.981333pt;}
.ws7{word-spacing:-0.960000pt;}
.ws5e{word-spacing:-0.853333pt;}
.wsd{word-spacing:-0.810667pt;}
.ws5a{word-spacing:-0.800000pt;}
.ws25{word-spacing:-0.768000pt;}
.ws33{word-spacing:-0.746667pt;}
.ws28{word-spacing:-0.725333pt;}
.ws47{word-spacing:-0.693333pt;}
.ws26{word-spacing:-0.682667pt;}
.wsa{word-spacing:-0.640000pt;}
.ws24{word-spacing:-0.608000pt;}
.ws23{word-spacing:-0.480000pt;}
.ws18{word-spacing:-0.373333pt;}
.ws27{word-spacing:-0.341333pt;}
.wsf{word-spacing:-0.266667pt;}
.ws41{word-spacing:-0.106667pt;}
.ws6{word-spacing:0.000000pt;}
.ws58{word-spacing:0.053333pt;}
.ws22{word-spacing:0.160000pt;}
.ws51{word-spacing:0.213333pt;}
.ws4c{word-spacing:0.266667pt;}
.ws44{word-spacing:0.320000pt;}
.ws35{word-spacing:0.426667pt;}
.ws36{word-spacing:0.586667pt;}
.ws10{word-spacing:0.746667pt;}
.ws39{word-spacing:0.853333pt;}
.ws1d{word-spacing:0.906667pt;}
.ws29{word-spacing:1.066667pt;}
.ws3b{word-spacing:1.226667pt;}
.ws1a{word-spacing:1.333333pt;}
.ws19{word-spacing:1.706667pt;}
.ws3e{word-spacing:1.973333pt;}
.ws4a{word-spacing:2.026667pt;}
.ws11{word-spacing:2.240000pt;}
.ws13{word-spacing:2.453333pt;}
.ws48{word-spacing:2.506667pt;}
.ws2f{word-spacing:3.200000pt;}
.ws49{word-spacing:3.306667pt;}
.ws14{word-spacing:3.360000pt;}
.ws50{word-spacing:3.520000pt;}
.ws12{word-spacing:3.573333pt;}
.ws5b{word-spacing:3.840000pt;}
.ws56{word-spacing:3.893333pt;}
.ws3c{word-spacing:4.160000pt;}
.ws52{word-spacing:4.533333pt;}
.ws30{word-spacing:4.586667pt;}
.ws1b{word-spacing:4.693333pt;}
.ws3f{word-spacing:4.746667pt;}
.ws53{word-spacing:4.906667pt;}
.ws3a{word-spacing:5.066667pt;}
.ws2b{word-spacing:5.653333pt;}
.ws1c{word-spacing:5.706667pt;}
.ws57{word-spacing:6.026667pt;}
.ws1e{word-spacing:6.186667pt;}
.ws2e{word-spacing:6.293333pt;}
.ws16{word-spacing:6.346667pt;}
.ws20{word-spacing:6.400000pt;}
.ws2c{word-spacing:6.506667pt;}
.ws2d{word-spacing:6.560000pt;}
.ws55{word-spacing:6.773333pt;}
.ws4f{word-spacing:6.933333pt;}
.ws31{word-spacing:8.746667pt;}
.ws46{word-spacing:8.800000pt;}
.ws32{word-spacing:10.933333pt;}
.ws59{word-spacing:12.000000pt;}
.ws21{word-spacing:13.280000pt;}
.ws42{word-spacing:14.613333pt;}
._11{margin-left:-5.346133pt;}
._4{margin-left:-4.334933pt;}
._2{margin-left:-3.244000pt;}
._3{margin-left:-2.176000pt;}
._0{margin-left:-1.196000pt;}
._1{width:0.964000pt;}
._7{width:2.134667pt;}
._8{width:3.045333pt;}
._6{width:4.517333pt;}
._a{width:5.536000pt;}
._9{width:6.816000pt;}
._5{width:7.734933pt;}
._b{width:8.905067pt;}
._c{width:9.989333pt;}
._d{width:11.146667pt;}
._f{width:13.258667pt;}
._e{width:14.266667pt;}
._10{width:15.429333pt;}
.fs7{font-size:31.093333pt;}
.fs6{font-size:32.000000pt;}
.fs3{font-size:34.202667pt;}
.fs0{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs5{font-size:52.266667pt;}
.fs4{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y6a{bottom:8.935600pt;}
.y69{bottom:8.989333pt;}
.y187{bottom:67.479333pt;}
.yea{bottom:80.812667pt;}
.y186{bottom:82.146000pt;}
.y10f{bottom:84.084533pt;}
.y3c{bottom:85.553733pt;}
.yc9{bottom:85.674267pt;}
.yc8{bottom:95.274267pt;}
.ya1{bottom:95.479333pt;}
.yef{bottom:95.853067pt;}
.ye9{bottom:96.812667pt;}
.y3b{bottom:98.353733pt;}
.y10e{bottom:100.084533pt;}
.yf6{bottom:103.470000pt;}
.y185{bottom:103.479333pt;}
.yee{bottom:106.519733pt;}
.y3a{bottom:111.153867pt;}
.ya0{bottom:111.479333pt;}
.yb4{bottom:111.779600pt;}
.ye8{bottom:112.812667pt;}
.yf5{bottom:113.070000pt;}
.y10d{bottom:116.084533pt;}
.yed{bottom:117.186400pt;}
.y131{bottom:117.711200pt;}
.y184{bottom:118.146000pt;}
.y66{bottom:119.172000pt;}
.y1bb{bottom:119.842667pt;}
.yb3{bottom:122.446267pt;}
.yf4{bottom:122.670000pt;}
.y39{bottom:123.953733pt;}
.y9f{bottom:127.479333pt;}
.ye7{bottom:128.812667pt;}
.y10c{bottom:132.084533pt;}
.y183{bottom:132.812667pt;}
.yb2{bottom:133.112933pt;}
.y130{bottom:133.711200pt;}
.y1ba{bottom:134.509333pt;}
.yec{bottom:134.519733pt;}
.y65{bottom:135.172000pt;}
.y38{bottom:136.753733pt;}
.y161{bottom:138.146000pt;}
.y9e{bottom:143.479333pt;}
.yb1{bottom:143.779600pt;}
.ye6{bottom:144.812667pt;}
.y10b{bottom:148.084533pt;}
.y1b9{bottom:149.176000pt;}
.y37{bottom:149.553733pt;}
.y12f{bottom:149.711200pt;}
.y64{bottom:151.172000pt;}
.yeb{bottom:151.853067pt;}
.y160{bottom:154.146000pt;}
.yb0{bottom:154.446267pt;}
.y9d{bottom:159.479333pt;}
.ye5{bottom:160.812667pt;}
.y36{bottom:162.353733pt;}
.y10a{bottom:164.084533pt;}
.yaf{bottom:165.112933pt;}
.y12e{bottom:165.711200pt;}
.y182{bottom:168.812667pt;}
.y15f{bottom:170.146000pt;}
.y1b8{bottom:170.509333pt;}
.y9c{bottom:175.479333pt;}
.yae{bottom:175.779600pt;}
.ye4{bottom:176.812667pt;}
.y109{bottom:180.084533pt;}
.y12d{bottom:181.711200pt;}
.y63{bottom:181.838667pt;}
.y1b7{bottom:185.176000pt;}
.y15e{bottom:186.146000pt;}
.yad{bottom:186.446267pt;}
.y181{bottom:190.146000pt;}
.y9b{bottom:191.479333pt;}
.y108{bottom:196.084533pt;}
.yac{bottom:197.112933pt;}
.y12c{bottom:197.711200pt;}
.y62{bottom:197.838667pt;}
.ye3{bottom:199.479333pt;}
.y15d{bottom:202.146000pt;}
.y180{bottom:204.812667pt;}
.y1b6{bottom:206.509333pt;}
.y9a{bottom:207.479333pt;}
.yab{bottom:207.779600pt;}
.y107{bottom:212.084533pt;}
.y12b{bottom:213.711200pt;}
.y61{bottom:213.838667pt;}
.ye2{bottom:215.479333pt;}
.y15c{bottom:218.146000pt;}
.yaa{bottom:218.446267pt;}
.y17f{bottom:219.479333pt;}
.y1b5{bottom:221.176000pt;}
.y99{bottom:223.479333pt;}
.ya9{bottom:229.112933pt;}
.y12a{bottom:229.711200pt;}
.y60{bottom:229.838667pt;}
.ye1{bottom:231.479333pt;}
.y35{bottom:232.122800pt;}
.y15b{bottom:234.146000pt;}
.y106{bottom:238.606667pt;}
.y98{bottom:239.479333pt;}
.ya8{bottom:239.779600pt;}
.y17e{bottom:240.812667pt;}
.y1b4{bottom:242.509333pt;}
.y34{bottom:244.922800pt;}
.y129{bottom:245.711200pt;}
.y5f{bottom:245.838667pt;}
.ye0{bottom:247.479333pt;}
.y105{bottom:248.206667pt;}
.ya7{bottom:250.446267pt;}
.y97{bottom:255.479333pt;}
.y1b3{bottom:257.176000pt;}
.y33{bottom:257.722800pt;}
.ya6{bottom:261.112933pt;}
.y128{bottom:261.711200pt;}
.y5e{bottom:261.838667pt;}
.ydf{bottom:263.479333pt;}
.y15a{bottom:264.812667pt;}
.y32{bottom:270.522933pt;}
.y96{bottom:271.479333pt;}
.ya5{bottom:271.779600pt;}
.y17d{bottom:276.812667pt;}
.y127{bottom:277.711200pt;}
.y5d{bottom:277.838667pt;}
.y1b2{bottom:278.509333pt;}
.yde{bottom:279.479333pt;}
.y159{bottom:280.812667pt;}
.ya4{bottom:282.446267pt;}
.y31{bottom:283.322800pt;}
.y17c{bottom:291.479333pt;}
.ya3{bottom:293.112933pt;}
.y1b1{bottom:293.176000pt;}
.y126{bottom:293.711200pt;}
.y5c{bottom:293.838667pt;}
.y95{bottom:294.146000pt;}
.ydd{bottom:295.479333pt;}
.y30{bottom:296.122800pt;}
.y158{bottom:296.812667pt;}
.ya2{bottom:303.779600pt;}
.y17b{bottom:306.146000pt;}
.y2f{bottom:308.922800pt;}
.y125{bottom:309.711200pt;}
.y5b{bottom:309.838667pt;}
.y94{bottom:310.146000pt;}
.ydc{bottom:311.479333pt;}
.y157{bottom:312.812667pt;}
.y1b0{bottom:314.509333pt;}
.y2e{bottom:321.722800pt;}
.y5a{bottom:325.838667pt;}
.y93{bottom:326.146000pt;}
.ydb{bottom:327.479333pt;}
.y156{bottom:328.812667pt;}
.y1af{bottom:329.176000pt;}
.y124{bottom:332.378000pt;}
.y2d{bottom:334.522800pt;}
.y59{bottom:341.838667pt;}
.y92{bottom:342.146000pt;}
.yda{bottom:343.479333pt;}
.y1ae{bottom:343.842667pt;}
.y155{bottom:344.812667pt;}
.y2c{bottom:347.322800pt;}
.y123{bottom:348.378000pt;}
.y17a{bottom:356.812667pt;}
.y58{bottom:357.838667pt;}
.y91{bottom:358.146000pt;}
.y2b{bottom:360.122800pt;}
.y122{bottom:364.378000pt;}
.y1ad{bottom:365.176000pt;}
.yd9{bottom:366.146000pt;}
.y154{bottom:367.479333pt;}
.y2a{bottom:372.922800pt;}
.y57{bottom:373.838667pt;}
.y90{bottom:374.146000pt;}
.y179{bottom:378.146000pt;}
.y1ac{bottom:379.842667pt;}
.y121{bottom:380.378000pt;}
.yd8{bottom:382.146000pt;}
.y153{bottom:383.479333pt;}
.y29{bottom:385.722800pt;}
.y8f{bottom:390.146000pt;}
.y178{bottom:392.812667pt;}
.y1ab{bottom:394.509333pt;}
.y120{bottom:396.378000pt;}
.y56{bottom:397.838667pt;}
.yd7{bottom:398.146000pt;}
.y28{bottom:398.522800pt;}
.y152{bottom:399.479333pt;}
.y8e{bottom:406.146000pt;}
.y177{bottom:407.479333pt;}
.y27{bottom:411.322800pt;}
.y11f{bottom:412.378000pt;}
.y55{bottom:413.838667pt;}
.yd6{bottom:414.146000pt;}
.y151{bottom:415.479333pt;}
.y1aa{bottom:415.842667pt;}
.y8d{bottom:422.146000pt;}
.y26{bottom:424.122800pt;}
.y11e{bottom:428.378000pt;}
.y104{bottom:428.812667pt;}
.y54{bottom:429.518667pt;}
.yd5{bottom:430.146000pt;}
.y1a9{bottom:430.509333pt;}
.y150{bottom:431.479333pt;}
.y25{bottom:436.922800pt;}
.y8c{bottom:438.146000pt;}
.y176{bottom:443.479333pt;}
.y11d{bottom:444.378000pt;}
.y103{bottom:444.812667pt;}
.y1a8{bottom:445.176000pt;}
.yd4{bottom:446.146000pt;}
.y14f{bottom:447.479333pt;}
.y24{bottom:449.722800pt;}
.y8b{bottom:454.146000pt;}
.y175{bottom:458.146000pt;}
.y11c{bottom:460.378000pt;}
.y102{bottom:460.812667pt;}
.yd3{bottom:462.146000pt;}
.y23{bottom:462.522800pt;}
.y14e{bottom:463.479333pt;}
.y1a7{bottom:466.509333pt;}
.yf3{bottom:468.241467pt;}
.y8a{bottom:470.146000pt;}
.y22{bottom:475.322800pt;}
.y11b{bottom:476.378000pt;}
.y101{bottom:476.812667pt;}
.yf2{bottom:477.841467pt;}
.yd2{bottom:478.146000pt;}
.y14d{bottom:479.479333pt;}
.y1a6{bottom:481.176000pt;}
.y53{bottom:483.865333pt;}
.y89{bottom:486.146000pt;}
.y11a{bottom:492.378000pt;}
.y100{bottom:492.812667pt;}
.yd1{bottom:494.146000pt;}
.y14c{bottom:495.479333pt;}
.y1a5{bottom:495.842667pt;}
.y52{bottom:499.865333pt;}
.yc7{bottom:500.812667pt;}
.y21{bottom:501.456133pt;}
.y88{bottom:502.146000pt;}
.y119{bottom:508.378000pt;}
.yff{bottom:508.812667pt;}
.yd0{bottom:510.146000pt;}
.y14b{bottom:511.479333pt;}
.y20{bottom:514.256133pt;}
.y51{bottom:515.865333pt;}
.yc6{bottom:516.812667pt;}
.y1a4{bottom:517.176000pt;}
.y87{bottom:518.146000pt;}
.yfe{bottom:524.812667pt;}
.ycf{bottom:526.146000pt;}
.y174{bottom:530.146000pt;}
.y118{bottom:531.044667pt;}
.y1a3{bottom:531.842667pt;}
.yc5{bottom:532.812667pt;}
.y14a{bottom:534.146000pt;}
.y1f{bottom:535.056133pt;}
.y86{bottom:540.812667pt;}
.yce{bottom:542.146000pt;}
.y173{bottom:544.812667pt;}
.y1a2{bottom:546.509333pt;}
.y50{bottom:546.532000pt;}
.y117{bottom:547.044667pt;}
.y1e{bottom:547.856133pt;}
.yc4{bottom:548.812667pt;}
.y149{bottom:550.146000pt;}
.y85{bottom:556.812667pt;}
.y4f{bottom:562.532000pt;}
.y116{bottom:563.044667pt;}
.yfd{bottom:563.479333pt;}
.yc3{bottom:564.812667pt;}
.y148{bottom:566.146000pt;}
.y1a1{bottom:567.842667pt;}
.y1d{bottom:568.656133pt;}
.y84{bottom:572.812667pt;}
.y4e{bottom:578.532000pt;}
.y115{bottom:579.044667pt;}
.yfc{bottom:579.479333pt;}
.yc2{bottom:580.812667pt;}
.y1c{bottom:581.456133pt;}
.y147{bottom:582.146000pt;}
.y1a0{bottom:582.509333pt;}
.y83{bottom:588.812667pt;}
.y4d{bottom:594.532000pt;}
.y114{bottom:595.044667pt;}
.yfb{bottom:595.479333pt;}
.yc1{bottom:596.812667pt;}
.y19f{bottom:597.176000pt;}
.y146{bottom:598.146000pt;}
.y82{bottom:604.812667pt;}
.y4c{bottom:610.532000pt;}
.y113{bottom:611.044667pt;}
.yfa{bottom:611.479333pt;}
.yc0{bottom:612.812667pt;}
.y145{bottom:614.146000pt;}
.y1b{bottom:614.256133pt;}
.y172{bottom:616.812667pt;}
.y19e{bottom:618.509333pt;}
.y81{bottom:620.812667pt;}
.y4b{bottom:626.532000pt;}
.y1a{bottom:627.056133pt;}
.yf9{bottom:627.479333pt;}
.ybf{bottom:628.812667pt;}
.y144{bottom:630.146000pt;}
.y171{bottom:631.479333pt;}
.y19d{bottom:633.176000pt;}
.y80{bottom:636.812667pt;}
.y112{bottom:638.271467pt;}
.y19{bottom:639.856133pt;}
.y4a{bottom:642.532000pt;}
.yf8{bottom:643.479333pt;}
.ybe{bottom:644.812667pt;}
.y143{bottom:646.146000pt;}
.y19c{bottom:647.842667pt;}
.y111{bottom:647.871467pt;}
.yf1{bottom:648.245200pt;}
.y7f{bottom:652.812667pt;}
.y110{bottom:657.471467pt;}
.yf0{bottom:657.845200pt;}
.y49{bottom:658.532000pt;}
.yf7{bottom:659.479333pt;}
.ybd{bottom:660.812667pt;}
.y18{bottom:665.989467pt;}
.y7e{bottom:668.812667pt;}
.y19b{bottom:669.176000pt;}
.y48{bottom:674.532000pt;}
.ycd{bottom:675.479333pt;}
.ybc{bottom:676.812667pt;}
.y17{bottom:677.989467pt;}
.y19a{bottom:683.842667pt;}
.y7d{bottom:684.812667pt;}
.y47{bottom:690.532000pt;}
.ycc{bottom:691.479333pt;}
.y16{bottom:696.656133pt;}
.y170{bottom:696.812667pt;}
.y199{bottom:698.509333pt;}
.y142{bottom:700.812667pt;}
.y46{bottom:706.532000pt;}
.y7c{bottom:707.479333pt;}
.y15{bottom:709.456133pt;}
.y16f{bottom:711.479333pt;}
.y141{bottom:716.812667pt;}
.y198{bottom:719.842667pt;}
.y14{bottom:721.456133pt;}
.y45{bottom:722.532000pt;}
.y7b{bottom:723.479333pt;}
.y16e{bottom:726.146000pt;}
.y140{bottom:732.812667pt;}
.y197{bottom:734.509333pt;}
.y44{bottom:738.532000pt;}
.y7a{bottom:739.479333pt;}
.y13{bottom:740.122800pt;}
.y16d{bottom:747.479333pt;}
.y13f{bottom:748.812667pt;}
.y12{bottom:752.122800pt;}
.y43{bottom:754.532000pt;}
.y79{bottom:755.479333pt;}
.y196{bottom:755.842667pt;}
.y16c{bottom:762.146000pt;}
.y11{bottom:764.122800pt;}
.y13e{bottom:764.812667pt;}
.y195{bottom:770.509333pt;}
.y78{bottom:771.479333pt;}
.y10{bottom:776.122800pt;}
.y13d{bottom:780.812667pt;}
.y16b{bottom:783.479333pt;}
.y194{bottom:785.176000pt;}
.y77{bottom:787.479333pt;}
.yf{bottom:788.122800pt;}
.y13c{bottom:796.812667pt;}
.y16a{bottom:798.146000pt;}
.y76{bottom:803.479333pt;}
.y193{bottom:806.509333pt;}
.ye{bottom:806.789467pt;}
.ycb{bottom:810.146000pt;}
.y13b{bottom:812.812667pt;}
.yd{bottom:818.789467pt;}
.y75{bottom:819.479333pt;}
.y192{bottom:821.176000pt;}
.yca{bottom:826.146000pt;}
.yc{bottom:830.789467pt;}
.y169{bottom:834.146000pt;}
.ybb{bottom:835.479333pt;}
.y191{bottom:835.842667pt;}
.y74{bottom:842.146000pt;}
.yb{bottom:842.789467pt;}
.y42{bottom:846.532000pt;}
.yba{bottom:851.479333pt;}
.ya{bottom:854.789467pt;}
.y168{bottom:855.479333pt;}
.y190{bottom:857.176000pt;}
.y73{bottom:858.146000pt;}
.y41{bottom:864.132000pt;}
.y13a{bottom:867.479333pt;}
.y167{bottom:870.146000pt;}
.y18f{bottom:871.842667pt;}
.y9{bottom:873.456133pt;}
.y72{bottom:874.146000pt;}
.y139{bottom:883.479333pt;}
.y8{bottom:885.456133pt;}
.y40{bottom:887.065333pt;}
.y71{bottom:890.146000pt;}
.y166{bottom:891.479333pt;}
.y18e{bottom:893.176000pt;}
.y138{bottom:899.479333pt;}
.y7{bottom:904.122800pt;}
.y70{bottom:906.146000pt;}
.y3f{bottom:906.265333pt;}
.y18d{bottom:907.842667pt;}
.yb9{bottom:911.769067pt;}
.y137{bottom:915.479333pt;}
.y6{bottom:916.122800pt;}
.y6f{bottom:922.146000pt;}
.y18c{bottom:922.509333pt;}
.y3e{bottom:925.465333pt;}
.y165{bottom:927.479333pt;}
.y136{bottom:931.479333pt;}
.yb8{bottom:934.702533pt;}
.y5{bottom:934.789467pt;}
.y18b{bottom:937.176000pt;}
.y6e{bottom:938.146000pt;}
.y164{bottom:942.146000pt;}
.y3d{bottom:944.665333pt;}
.y4{bottom:946.789467pt;}
.y135{bottom:947.479333pt;}
.yb7{bottom:947.502400pt;}
.y6d{bottom:954.146000pt;}
.y163{bottom:956.812667pt;}
.y18a{bottom:958.509333pt;}
.y3{bottom:958.789467pt;}
.yb6{bottom:960.302533pt;}
.y134{bottom:963.479333pt;}
.y6c{bottom:970.146000pt;}
.y2{bottom:970.789467pt;}
.y162{bottom:971.479333pt;}
.yb5{bottom:973.102400pt;}
.y189{bottom:973.176000pt;}
.y133{bottom:979.479333pt;}
.y1{bottom:982.789467pt;}
.y6b{bottom:986.146000pt;}
.y188{bottom:987.842667pt;}
.y132{bottom:995.479333pt;}
.y67{bottom:1059.017600pt;}
.y68{bottom:1078.745867pt;}
.h13{height:24.546875pt;}
.h12{height:24.578125pt;}
.he{height:27.906250pt;}
.h14{height:32.729167pt;}
.h11{height:32.770833pt;}
.h2{height:34.882812pt;}
.hd{height:35.156250pt;}
.h5{height:36.875000pt;}
.h3{height:37.208333pt;}
.h4{height:37.500000pt;}
.hc{height:38.077083pt;}
.ha{height:38.828125pt;}
.hb{height:38.854167pt;}
.h10{height:40.396797pt;}
.h9{height:48.515625pt;}
.h7{height:49.363130pt;}
.h8{height:49.363664pt;}
.hf{height:55.812500pt;}
.h6{height:56.250000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:12.278267pt;}
.x7{left:79.333333pt;}
.x2{left:80.445333pt;}
.x8{left:93.333333pt;}
.x6{left:106.666667pt;}
.x4{left:153.537600pt;}
.x5{left:481.104933pt;}
.x1{left:580.368000pt;}
}




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