
    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_c6bb2b955383fa666cdf7a26.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.132000;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_1053bac635bf83aa6b569e0d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.930000;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_c6bb2b955383fa666cdf7a26.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.132000;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_d9e1d8cb6b806718b47493d3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_a91e1da8d37f8de830ec44dc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.908203;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_00afcb9624526c19548d40df.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.900391;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_284df269bb3f7e5e6094eb3e.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ac495bb1c55cbe47a583eba8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.913000;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_c6bb2b955383fa666cdf7a26.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.132000;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_1053bac635bf83aa6b569e0d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.930000;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_c6bb2b955383fa666cdf7a26.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.132000;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_1053bac635bf83aa6b569e0d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.930000;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_c6bb2b955383fa666cdf7a26.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.132000;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_1053bac635bf83aa6b569e0d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.930000;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_62d7e3c423ab9940feea102f.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_3e1a2888fabb4b8ab4c1a6ef.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.977600px;}
.lsd{letter-spacing:-1.423686px;}
.ls7{letter-spacing:-1.176000px;}
.lse{letter-spacing:-1.035408px;}
.lsb{letter-spacing:-0.660000px;}
.ls8{letter-spacing:-0.588000px;}
.ls6{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000300px;}
.lsc{letter-spacing:0.660000px;}
.ls1{letter-spacing:1.176000px;}
.ls4{letter-spacing:3.423600px;}
.ls3{letter-spacing:4.011600px;}
.ls5{letter-spacing:6.878400px;}
.ls9{letter-spacing:6.879600px;}
.ls2{letter-spacing:15.741000px;}
.lsa{letter-spacing:1110.600600px;}
.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;}
}
.wse{word-spacing:-16.500000px;}
.ws0{word-spacing:-15.876000px;}
.wsc{word-spacing:-15.840000px;}
.ws1{word-spacing:-14.700000px;}
.ws2{word-spacing:-14.112000px;}
.ws25{word-spacing:-14.100000px;}
.ws4{word-spacing:-12.000000px;}
.ws12{word-spacing:-11.676000px;}
.wsd{word-spacing:-9.619500px;}
.ws1e{word-spacing:-8.195814px;}
.ws3{word-spacing:-6.996000px;}
.wsb{word-spacing:-6.879600px;}
.ws1f{word-spacing:-5.960592px;}
.ws38{word-spacing:-2.312400px;}
.ws37{word-spacing:-2.030400px;}
.ws1a{word-spacing:-1.920000px;}
.ws2a{word-spacing:-1.861200px;}
.ws10{word-spacing:-1.824000px;}
.ws3d{word-spacing:-1.748400px;}
.ws32{word-spacing:-1.692000px;}
.ws40{word-spacing:-1.635600px;}
.ws11{word-spacing:-1.488000px;}
.ws3e{word-spacing:-1.353600px;}
.ws14{word-spacing:-1.254000px;}
.ws17{word-spacing:-1.188000px;}
.ws34{word-spacing:-1.184400px;}
.ws8{word-spacing:-1.176000px;}
.ws1c{word-spacing:-1.104000px;}
.ws2d{word-spacing:-1.015200px;}
.ws30{word-spacing:-0.846000px;}
.ws33{word-spacing:-0.733200px;}
.ws18{word-spacing:-0.660000px;}
.ws13{word-spacing:-0.462000px;}
.ws16{word-spacing:-0.198000px;}
.ws29{word-spacing:-0.056400px;}
.ws5{word-spacing:0.000000px;}
.ws3a{word-spacing:0.169200px;}
.ws19{word-spacing:0.330000px;}
.ws7{word-spacing:0.588000px;}
.wsf{word-spacing:0.660000px;}
.ws2f{word-spacing:0.733200px;}
.ws20{word-spacing:1.056000px;}
.ws41{word-spacing:1.071600px;}
.ws23{word-spacing:1.122000px;}
.ws6{word-spacing:1.176000px;}
.ws24{word-spacing:1.579200px;}
.ws3b{word-spacing:1.861200px;}
.ws1d{word-spacing:2.112000px;}
.ws28{word-spacing:2.256000px;}
.ws2c{word-spacing:2.368800px;}
.ws2e{word-spacing:2.594400px;}
.ws36{word-spacing:2.650800px;}
.ws1b{word-spacing:2.706000px;}
.ws3f{word-spacing:3.609600px;}
.ws31{word-spacing:3.666000px;}
.ws9{word-spacing:3.998400px;}
.ws2b{word-spacing:4.004400px;}
.ws27{word-spacing:4.963200px;}
.ws15{word-spacing:5.016000px;}
.ws3c{word-spacing:5.019600px;}
.ws21{word-spacing:5.742000px;}
.wsa{word-spacing:7.467600px;}
.ws39{word-spacing:7.614000px;}
.ws35{word-spacing:9.644400px;}
.ws26{word-spacing:10.885200px;}
.ws22{word-spacing:1075.572600px;}
._14{margin-left:-2891.338800px;}
._2{margin-left:-7.638300px;}
._13{margin-left:-6.601680px;}
._10{margin-left:-5.456880px;}
._b{margin-left:-4.249200px;}
._3{margin-left:-2.583360px;}
._1{margin-left:-1.297200px;}
._9{width:1.064280px;}
._5{width:2.462880px;}
._8{width:3.739680px;}
._7{width:4.973520px;}
._4{width:5.992200px;}
._a{width:7.484760px;}
._6{width:9.161040px;}
._c{width:11.138400px;}
._e{width:12.359400px;}
._d{width:13.535100px;}
._f{width:15.751560px;}
._0{width:35.406000px;}
._15{width:45.216000px;}
._16{width:46.239936px;}
._11{width:59.184000px;}
._12{width:73.200000px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(248,248,248);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:27.984000px;}
.fsb{font-size:38.478000px;}
.fs3{font-size:40.227000px;}
.fs0{font-size:42.000000px;}
.fs4{font-size:46.800000px;}
.fs8{font-size:48.000000px;}
.fsc{font-size:56.400000px;}
.fs5{font-size:58.800000px;}
.fs9{font-size:60.000000px;}
.fsa{font-size:66.000000px;}
.fs2{font-size:69.000000px;}
.fs6{font-size:84.000000px;}
.fs1{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:38.384400px;}
.y1{bottom:52.648500px;}
.y2f{bottom:74.409450px;}
.y16c{bottom:74.409600px;}
.ya5{bottom:74.732850px;}
.yd2{bottom:78.405450px;}
.y15b{bottom:78.405600px;}
.y1b8{bottom:79.005300px;}
.y175{bottom:79.705350px;}
.y69{bottom:88.809450px;}
.y16b{bottom:88.809600px;}
.ya4{bottom:92.732850px;}
.y2e{bottom:92.805450px;}
.y1b7{bottom:95.505300px;}
.y174{bottom:96.205350px;}
.y2d{bottom:103.209450px;}
.y15a{bottom:107.205600px;}
.ya3{bottom:110.732850px;}
.y1b6{bottom:112.005300px;}
.y173{bottom:112.705350px;}
.y68{bottom:117.609450px;}
.y2c{bottom:121.605450px;}
.y159{bottom:121.605600px;}
.yd1{bottom:122.638350px;}
.y1b5{bottom:128.505300px;}
.ya2{bottom:128.732850px;}
.y172{bottom:129.205350px;}
.y67{bottom:132.009450px;}
.y16a{bottom:132.009600px;}
.yd0{bottom:140.638350px;}
.y1b4{bottom:145.005300px;}
.y171{bottom:145.705350px;}
.y66{bottom:146.409450px;}
.y169{bottom:146.409600px;}
.ya1{bottom:146.732850px;}
.y127{bottom:150.405450px;}
.ycf{bottom:158.638350px;}
.yf5{bottom:160.809450px;}
.y168{bottom:160.809600px;}
.y1b3{bottom:161.505300px;}
.y170{bottom:162.205350px;}
.ya0{bottom:164.732850px;}
.y65{bottom:164.805450px;}
.yf4{bottom:175.209450px;}
.y167{bottom:175.209600px;}
.yce{bottom:176.638350px;}
.y2b{bottom:177.120000px;}
.y1b2{bottom:178.005300px;}
.y16f{bottom:178.705350px;}
.y158{bottom:179.205600px;}
.y9f{bottom:182.732850px;}
.y126{bottom:189.609450px;}
.y166{bottom:189.609600px;}
.yf3{bottom:193.605450px;}
.y2a{bottom:193.620000px;}
.y1b1{bottom:194.505300px;}
.ycd{bottom:194.638350px;}
.y64{bottom:196.469400px;}
.yf1{bottom:200.732850px;}
.y125{bottom:204.009450px;}
.y165{bottom:208.005600px;}
.y29{bottom:210.120000px;}
.y1b0{bottom:211.005300px;}
.ycc{bottom:212.638350px;}
.y16e{bottom:213.063600px;}
.y63{bottom:214.831200px;}
.y9e{bottom:218.591100px;}
.yf0{bottom:218.732850px;}
.y124{bottom:222.405450px;}
.y1af{bottom:227.505300px;}
.ycb{bottom:230.638350px;}
.y62{bottom:233.192850px;}
.yef{bottom:236.732850px;}
.y123{bottom:236.805450px;}
.y28{bottom:241.620000px;}
.y1ae{bottom:244.005300px;}
.yf2{bottom:248.354850px;}
.yca{bottom:248.638350px;}
.yee{bottom:254.732850px;}
.y27{bottom:258.120000px;}
.y1ad{bottom:260.505300px;}
.y9d{bottom:266.354850px;}
.yc9{bottom:266.638350px;}
.y16d{bottom:266.780100px;}
.y157{bottom:266.904300px;}
.y61{bottom:269.412900px;}
.yed{bottom:272.732850px;}
.y1ac{bottom:277.005300px;}
.y9c{bottom:284.354850px;}
.yc8{bottom:284.638350px;}
.y122{bottom:284.780100px;}
.y156{bottom:284.904300px;}
.yec{bottom:290.732850px;}
.y1ab{bottom:293.505300px;}
.y1ee{bottom:293.518950px;}
.y9b{bottom:302.354850px;}
.yc7{bottom:302.638350px;}
.y121{bottom:302.780100px;}
.y155{bottom:302.904300px;}
.y26{bottom:304.620000px;}
.y60{bottom:305.632800px;}
.yeb{bottom:308.732850px;}
.y1aa{bottom:310.005300px;}
.y1ed{bottom:310.018950px;}
.y9a{bottom:320.354850px;}
.yc6{bottom:320.638350px;}
.y120{bottom:320.780100px;}
.y154{bottom:320.904300px;}
.y25{bottom:321.120000px;}
.y5f{bottom:323.994600px;}
.y1a9{bottom:326.505300px;}
.y1ec{bottom:326.518950px;}
.yea{bottom:326.732850px;}
.y24{bottom:337.620000px;}
.y99{bottom:338.354850px;}
.yc5{bottom:338.638350px;}
.y11f{bottom:338.780100px;}
.y153{bottom:338.904300px;}
.y5e{bottom:342.356250px;}
.y1a8{bottom:343.005300px;}
.y1eb{bottom:343.018950px;}
.ye9{bottom:344.732850px;}
.y23{bottom:354.120000px;}
.y98{bottom:356.354850px;}
.yc4{bottom:356.638350px;}
.y11e{bottom:356.780100px;}
.y152{bottom:356.904300px;}
.y1a7{bottom:359.505300px;}
.y1ea{bottom:359.518950px;}
.y5d{bottom:360.718050px;}
.ye8{bottom:362.732850px;}
.y22{bottom:370.620000px;}
.y97{bottom:374.354850px;}
.yc3{bottom:374.638350px;}
.y11d{bottom:374.780100px;}
.y151{bottom:374.904300px;}
.y1a6{bottom:376.005300px;}
.y1e9{bottom:376.018950px;}
.y5c{bottom:379.079850px;}
.ye7{bottom:380.732850px;}
.y21{bottom:387.120000px;}
.y96{bottom:392.354850px;}
.y1a5{bottom:392.505300px;}
.y1e8{bottom:392.518950px;}
.yc2{bottom:392.638350px;}
.y11c{bottom:392.780100px;}
.y150{bottom:392.904300px;}
.y5b{bottom:397.441650px;}
.ye6{bottom:398.732850px;}
.y20{bottom:403.620000px;}
.y1a4{bottom:409.005300px;}
.y1e7{bottom:409.018950px;}
.y95{bottom:410.354850px;}
.yc1{bottom:410.638350px;}
.y11b{bottom:410.780100px;}
.y14f{bottom:410.904300px;}
.y5a{bottom:415.803300px;}
.ye5{bottom:416.732850px;}
.y1f{bottom:420.120000px;}
.y1a3{bottom:425.505150px;}
.y1e6{bottom:425.518950px;}
.y94{bottom:428.354850px;}
.yc0{bottom:428.638350px;}
.y11a{bottom:428.780100px;}
.y14e{bottom:428.904300px;}
.y59{bottom:434.165100px;}
.ye4{bottom:434.732850px;}
.y1e{bottom:436.620000px;}
.y1a2{bottom:442.005150px;}
.y1e5{bottom:442.018950px;}
.y93{bottom:446.354850px;}
.ybf{bottom:446.638350px;}
.y119{bottom:446.780100px;}
.y14d{bottom:446.904300px;}
.y58{bottom:452.526750px;}
.ye3{bottom:452.732850px;}
.y1d{bottom:453.120000px;}
.y1a1{bottom:458.505150px;}
.y1e4{bottom:458.518950px;}
.y92{bottom:464.354850px;}
.ybe{bottom:464.638350px;}
.y118{bottom:464.780100px;}
.y14c{bottom:464.904300px;}
.y1c{bottom:469.620000px;}
.ye2{bottom:470.732850px;}
.y57{bottom:470.888550px;}
.y1a0{bottom:475.005150px;}
.y1e3{bottom:475.018950px;}
.y91{bottom:482.354850px;}
.ybd{bottom:482.638350px;}
.y117{bottom:482.780100px;}
.y14b{bottom:482.904300px;}
.y1b{bottom:486.120000px;}
.ye1{bottom:488.732850px;}
.y56{bottom:489.250200px;}
.y19f{bottom:491.505150px;}
.y1e2{bottom:491.518950px;}
.y90{bottom:500.354850px;}
.ybc{bottom:500.638350px;}
.y116{bottom:500.780100px;}
.y14a{bottom:500.904300px;}
.y1a{bottom:502.620000px;}
.ye0{bottom:506.732850px;}
.y19e{bottom:508.005150px;}
.y1e1{bottom:508.018950px;}
.y8f{bottom:518.354850px;}
.ybb{bottom:518.638350px;}
.y115{bottom:518.780100px;}
.y149{bottom:518.904300px;}
.y19{bottom:519.120000px;}
.y19d{bottom:524.505150px;}
.y1e0{bottom:524.518950px;}
.ydf{bottom:524.732850px;}
.y55{bottom:525.470250px;}
.y18{bottom:535.620000px;}
.y8e{bottom:536.354850px;}
.yba{bottom:536.638350px;}
.y114{bottom:536.780100px;}
.y148{bottom:536.904300px;}
.y19c{bottom:541.005150px;}
.y1df{bottom:541.018950px;}
.yde{bottom:542.732850px;}
.y8d{bottom:554.354850px;}
.yb9{bottom:554.638350px;}
.y113{bottom:554.780100px;}
.y147{bottom:554.904300px;}
.y19b{bottom:557.505150px;}
.y1de{bottom:557.518950px;}
.ydd{bottom:560.732850px;}
.y17{bottom:567.120000px;}
.y8c{bottom:572.354850px;}
.yb8{bottom:572.638350px;}
.y112{bottom:572.780100px;}
.y146{bottom:572.904300px;}
.y19a{bottom:574.005150px;}
.y1dd{bottom:574.018950px;}
.ydc{bottom:578.732850px;}
.y54{bottom:579.548550px;}
.y8b{bottom:590.354850px;}
.y199{bottom:590.505150px;}
.y1dc{bottom:590.518950px;}
.yb7{bottom:590.638350px;}
.y111{bottom:590.780100px;}
.y145{bottom:590.904300px;}
.ydb{bottom:596.732850px;}
.y53{bottom:597.910350px;}
.y16{bottom:598.620000px;}
.y198{bottom:607.005150px;}
.y1db{bottom:607.018950px;}
.y8a{bottom:608.354850px;}
.yb6{bottom:608.638350px;}
.y110{bottom:608.780100px;}
.y144{bottom:608.904300px;}
.yda{bottom:614.732850px;}
.y52{bottom:616.272000px;}
.y197{bottom:623.505150px;}
.y1da{bottom:623.518950px;}
.y89{bottom:626.354850px;}
.yb5{bottom:626.638350px;}
.y10f{bottom:626.780100px;}
.y143{bottom:626.904300px;}
.yd9{bottom:632.732850px;}
.y51{bottom:634.633800px;}
.y196{bottom:640.005150px;}
.y1d9{bottom:640.018950px;}
.y88{bottom:644.354850px;}
.yb4{bottom:644.638350px;}
.y10e{bottom:644.780100px;}
.y142{bottom:644.904300px;}
.yd8{bottom:650.732850px;}
.y50{bottom:652.995600px;}
.y15{bottom:655.631700px;}
.y195{bottom:656.505150px;}
.y1d8{bottom:656.518950px;}
.y87{bottom:662.354850px;}
.yb3{bottom:662.638350px;}
.y10d{bottom:662.780100px;}
.y141{bottom:662.904300px;}
.yd7{bottom:668.732850px;}
.y4f{bottom:671.357250px;}
.y14{bottom:672.131700px;}
.y194{bottom:673.005150px;}
.y1d7{bottom:673.018950px;}
.y86{bottom:680.354850px;}
.yb2{bottom:680.638350px;}
.y10c{bottom:680.780100px;}
.y140{bottom:680.904300px;}
.yd6{bottom:686.732850px;}
.y13{bottom:688.631700px;}
.y193{bottom:689.505150px;}
.y1d6{bottom:689.518950px;}
.y4e{bottom:689.719050px;}
.y85{bottom:698.354850px;}
.yb1{bottom:698.638350px;}
.y10b{bottom:698.780100px;}
.y13f{bottom:698.904300px;}
.yd5{bottom:704.732850px;}
.y12{bottom:705.131700px;}
.y192{bottom:706.005150px;}
.y1d5{bottom:706.018950px;}
.y4d{bottom:708.080700px;}
.y84{bottom:716.354850px;}
.yb0{bottom:716.638350px;}
.y10a{bottom:716.780100px;}
.y13e{bottom:716.904300px;}
.y11{bottom:721.631700px;}
.y191{bottom:722.505150px;}
.y1d4{bottom:722.518950px;}
.yd4{bottom:722.732850px;}
.y4c{bottom:726.442500px;}
.y83{bottom:734.354850px;}
.yaf{bottom:734.638350px;}
.y109{bottom:734.780100px;}
.y13d{bottom:734.904300px;}
.y10{bottom:738.131700px;}
.y190{bottom:739.005150px;}
.y1d3{bottom:739.018950px;}
.y4b{bottom:744.804300px;}
.y82{bottom:752.354850px;}
.yae{bottom:752.638350px;}
.y108{bottom:752.780100px;}
.y13c{bottom:752.904300px;}
.yf{bottom:754.631700px;}
.y18f{bottom:755.505150px;}
.y1d2{bottom:755.518950px;}
.yd3{bottom:758.591100px;}
.y4a{bottom:763.165950px;}
.y81{bottom:770.354850px;}
.yad{bottom:770.638350px;}
.y107{bottom:770.780100px;}
.y13b{bottom:770.904300px;}
.ye{bottom:771.131700px;}
.y18e{bottom:772.005300px;}
.y1d1{bottom:772.018950px;}
.y49{bottom:781.527600px;}
.yd{bottom:787.631700px;}
.y80{bottom:788.354850px;}
.y18d{bottom:788.505300px;}
.y1d0{bottom:788.518950px;}
.yac{bottom:788.638350px;}
.y106{bottom:788.780100px;}
.y13a{bottom:788.904300px;}
.y48{bottom:799.889400px;}
.yc{bottom:804.131700px;}
.y18c{bottom:805.005300px;}
.y1cf{bottom:805.018950px;}
.y7f{bottom:806.354850px;}
.yab{bottom:806.638350px;}
.y105{bottom:806.780100px;}
.y139{bottom:806.904300px;}
.y47{bottom:818.251200px;}
.yb{bottom:820.631700px;}
.y18b{bottom:821.505300px;}
.y1ce{bottom:821.518950px;}
.y7e{bottom:824.354850px;}
.yaa{bottom:824.638350px;}
.y104{bottom:824.780100px;}
.y138{bottom:824.904300px;}
.y46{bottom:836.612850px;}
.ya{bottom:837.131700px;}
.y18a{bottom:838.005300px;}
.y1cd{bottom:838.018950px;}
.y7d{bottom:842.354850px;}
.ya9{bottom:842.638350px;}
.y103{bottom:842.780100px;}
.y137{bottom:842.904300px;}
.y9{bottom:853.631700px;}
.y189{bottom:854.505300px;}
.y1cc{bottom:854.518950px;}
.y45{bottom:854.974650px;}
.y7c{bottom:860.354850px;}
.ya8{bottom:860.638350px;}
.y102{bottom:860.780100px;}
.y136{bottom:860.904300px;}
.y8{bottom:870.131700px;}
.y188{bottom:871.005300px;}
.y1cb{bottom:871.018950px;}
.y44{bottom:873.336300px;}
.y7b{bottom:878.354850px;}
.ya7{bottom:878.638350px;}
.y101{bottom:878.780100px;}
.y135{bottom:878.904300px;}
.y7{bottom:886.631700px;}
.y187{bottom:887.505300px;}
.y1ca{bottom:887.518950px;}
.y43{bottom:891.698250px;}
.y7a{bottom:896.354850px;}
.y164{bottom:896.638350px;}
.y100{bottom:896.780100px;}
.y134{bottom:896.904300px;}
.y186{bottom:904.005300px;}
.y1c9{bottom:904.018950px;}
.y42{bottom:910.059900px;}
.y79{bottom:914.354850px;}
.ya6{bottom:914.496600px;}
.y163{bottom:914.638350px;}
.yff{bottom:914.780100px;}
.y133{bottom:914.904300px;}
.y6{bottom:918.131700px;}
.y185{bottom:920.505300px;}
.y1c8{bottom:920.518950px;}
.y41{bottom:928.421700px;}
.y78{bottom:932.354850px;}
.y162{bottom:932.638350px;}
.yfe{bottom:932.780100px;}
.y132{bottom:932.904300px;}
.y184{bottom:937.005300px;}
.y1c7{bottom:937.018950px;}
.y40{bottom:946.783350px;}
.y77{bottom:950.354850px;}
.y161{bottom:950.638350px;}
.yfd{bottom:950.780100px;}
.y131{bottom:950.904300px;}
.y183{bottom:953.505300px;}
.y1c6{bottom:953.518950px;}
.y3f{bottom:965.145150px;}
.y5{bottom:966.131700px;}
.y76{bottom:968.354850px;}
.y160{bottom:968.638350px;}
.yfc{bottom:968.780100px;}
.y130{bottom:968.904300px;}
.y182{bottom:970.005300px;}
.y1c5{bottom:970.018950px;}
.y3e{bottom:983.506950px;}
.y75{bottom:986.354850px;}
.y181{bottom:986.505300px;}
.y1c4{bottom:986.518950px;}
.y15f{bottom:986.638350px;}
.yfb{bottom:986.780100px;}
.y12f{bottom:986.904300px;}
.y4{bottom:999.131700px;}
.y3d{bottom:1001.868600px;}
.y180{bottom:1003.005300px;}
.y1c3{bottom:1003.018950px;}
.y74{bottom:1004.354850px;}
.y15e{bottom:1004.638350px;}
.yfa{bottom:1004.780100px;}
.y12e{bottom:1004.904300px;}
.y17f{bottom:1019.505300px;}
.y1c2{bottom:1019.518950px;}
.y3c{bottom:1020.230400px;}
.y73{bottom:1022.354850px;}
.yf9{bottom:1022.780100px;}
.y12d{bottom:1022.904300px;}
.y3{bottom:1026.131700px;}
.y17e{bottom:1036.005300px;}
.y1c1{bottom:1036.018950px;}
.y3b{bottom:1038.592050px;}
.y72{bottom:1040.354850px;}
.y15d{bottom:1040.496600px;}
.yf8{bottom:1040.780100px;}
.y12c{bottom:1040.904300px;}
.y17d{bottom:1052.505300px;}
.y1c0{bottom:1052.518950px;}
.y3a{bottom:1056.953850px;}
.y71{bottom:1058.354850px;}
.y15c{bottom:1058.496600px;}
.yf7{bottom:1058.780100px;}
.y12b{bottom:1058.904300px;}
.y17c{bottom:1069.005300px;}
.y1bf{bottom:1069.018950px;}
.y32{bottom:1070.991000px;}
.y39{bottom:1075.315500px;}
.y70{bottom:1076.354850px;}
.y12a{bottom:1076.904300px;}
.y17b{bottom:1085.505300px;}
.y1be{bottom:1085.518950px;}
.y38{bottom:1093.677300px;}
.y6f{bottom:1094.354850px;}
.yf6{bottom:1094.638350px;}
.y129{bottom:1094.904300px;}
.y17a{bottom:1102.005300px;}
.y1bd{bottom:1102.018950px;}
.y31{bottom:1106.991000px;}
.y37{bottom:1112.039100px;}
.y6e{bottom:1112.354850px;}
.y179{bottom:1118.505300px;}
.y1bc{bottom:1118.518950px;}
.y30{bottom:1124.991000px;}
.y6d{bottom:1130.354850px;}
.y36{bottom:1130.400750px;}
.y128{bottom:1130.762550px;}
.y178{bottom:1135.005300px;}
.y1bb{bottom:1135.018950px;}
.y6c{bottom:1148.354850px;}
.y177{bottom:1151.505300px;}
.y1ba{bottom:1151.518950px;}
.y33{bottom:1164.480000px;}
.y6b{bottom:1166.354850px;}
.y35{bottom:1166.620800px;}
.y176{bottom:1168.005300px;}
.y1b9{bottom:1168.018950px;}
.y34{bottom:1206.323400px;}
.y6a{bottom:1206.323550px;}
.he{height:26.132588px;}
.h8{height:26.133188px;}
.h2{height:38.724000px;}
.h5{height:41.064258px;}
.h9{height:42.117188px;}
.ha{height:43.860000px;}
.hb{height:44.256000px;}
.hc{height:45.181641px;}
.hf{height:49.487695px;}
.h6{height:51.593555px;}
.hd{height:57.911133px;}
.h4{height:60.543457px;}
.h7{height:73.705078px;}
.h3{height:78.969727px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:85.039350px;}
.x3{left:86.102400px;}
.x4{left:96.378000px;}
.x6{left:106.339350px;}
.x5{left:725.086350px;}
.x7{left:796.198050px;}
.x1{left:802.036050px;}
@media print{
.v2{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.424533pt;}
.lsd{letter-spacing:-1.265499pt;}
.ls7{letter-spacing:-1.045333pt;}
.lse{letter-spacing:-0.920363pt;}
.lsb{letter-spacing:-0.586667pt;}
.ls8{letter-spacing:-0.522667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000267pt;}
.lsc{letter-spacing:0.586667pt;}
.ls1{letter-spacing:1.045333pt;}
.ls4{letter-spacing:3.043200pt;}
.ls3{letter-spacing:3.565867pt;}
.ls5{letter-spacing:6.114133pt;}
.ls9{letter-spacing:6.115200pt;}
.ls2{letter-spacing:13.992000pt;}
.lsa{letter-spacing:987.200533pt;}
.wse{word-spacing:-14.666667pt;}
.ws0{word-spacing:-14.112000pt;}
.wsc{word-spacing:-14.080000pt;}
.ws1{word-spacing:-13.066667pt;}
.ws2{word-spacing:-12.544000pt;}
.ws25{word-spacing:-12.533333pt;}
.ws4{word-spacing:-10.666667pt;}
.ws12{word-spacing:-10.378667pt;}
.wsd{word-spacing:-8.550667pt;}
.ws1e{word-spacing:-7.285168pt;}
.ws3{word-spacing:-6.218667pt;}
.wsb{word-spacing:-6.115200pt;}
.ws1f{word-spacing:-5.298304pt;}
.ws38{word-spacing:-2.055467pt;}
.ws37{word-spacing:-1.804800pt;}
.ws1a{word-spacing:-1.706667pt;}
.ws2a{word-spacing:-1.654400pt;}
.ws10{word-spacing:-1.621333pt;}
.ws3d{word-spacing:-1.554133pt;}
.ws32{word-spacing:-1.504000pt;}
.ws40{word-spacing:-1.453867pt;}
.ws11{word-spacing:-1.322667pt;}
.ws3e{word-spacing:-1.203200pt;}
.ws14{word-spacing:-1.114667pt;}
.ws17{word-spacing:-1.056000pt;}
.ws34{word-spacing:-1.052800pt;}
.ws8{word-spacing:-1.045333pt;}
.ws1c{word-spacing:-0.981333pt;}
.ws2d{word-spacing:-0.902400pt;}
.ws30{word-spacing:-0.752000pt;}
.ws33{word-spacing:-0.651733pt;}
.ws18{word-spacing:-0.586667pt;}
.ws13{word-spacing:-0.410667pt;}
.ws16{word-spacing:-0.176000pt;}
.ws29{word-spacing:-0.050133pt;}
.ws5{word-spacing:0.000000pt;}
.ws3a{word-spacing:0.150400pt;}
.ws19{word-spacing:0.293333pt;}
.ws7{word-spacing:0.522667pt;}
.wsf{word-spacing:0.586667pt;}
.ws2f{word-spacing:0.651733pt;}
.ws20{word-spacing:0.938667pt;}
.ws41{word-spacing:0.952533pt;}
.ws23{word-spacing:0.997333pt;}
.ws6{word-spacing:1.045333pt;}
.ws24{word-spacing:1.403733pt;}
.ws3b{word-spacing:1.654400pt;}
.ws1d{word-spacing:1.877333pt;}
.ws28{word-spacing:2.005333pt;}
.ws2c{word-spacing:2.105600pt;}
.ws2e{word-spacing:2.306133pt;}
.ws36{word-spacing:2.356267pt;}
.ws1b{word-spacing:2.405333pt;}
.ws3f{word-spacing:3.208533pt;}
.ws31{word-spacing:3.258667pt;}
.ws9{word-spacing:3.554133pt;}
.ws2b{word-spacing:3.559467pt;}
.ws27{word-spacing:4.411733pt;}
.ws15{word-spacing:4.458667pt;}
.ws3c{word-spacing:4.461867pt;}
.ws21{word-spacing:5.104000pt;}
.wsa{word-spacing:6.637867pt;}
.ws39{word-spacing:6.768000pt;}
.ws35{word-spacing:8.572800pt;}
.ws26{word-spacing:9.675733pt;}
.ws22{word-spacing:956.064533pt;}
._14{margin-left:-2570.078933pt;}
._2{margin-left:-6.789600pt;}
._13{margin-left:-5.868160pt;}
._10{margin-left:-4.850560pt;}
._b{margin-left:-3.777067pt;}
._3{margin-left:-2.296320pt;}
._1{margin-left:-1.153067pt;}
._9{width:0.946027pt;}
._5{width:2.189227pt;}
._8{width:3.324160pt;}
._7{width:4.420907pt;}
._4{width:5.326400pt;}
._a{width:6.653120pt;}
._6{width:8.143147pt;}
._c{width:9.900800pt;}
._e{width:10.986133pt;}
._d{width:12.031200pt;}
._f{width:14.001387pt;}
._0{width:31.472000pt;}
._15{width:40.192000pt;}
._16{width:41.102165pt;}
._11{width:52.608000pt;}
._12{width:65.066667pt;}
.fs7{font-size:24.874667pt;}
.fsb{font-size:34.202667pt;}
.fs3{font-size:35.757333pt;}
.fs0{font-size:37.333333pt;}
.fs4{font-size:41.600000pt;}
.fs8{font-size:42.666667pt;}
.fsc{font-size:50.133333pt;}
.fs5{font-size:52.266667pt;}
.fs9{font-size:53.333333pt;}
.fsa{font-size:58.666667pt;}
.fs2{font-size:61.333333pt;}
.fs6{font-size:74.666667pt;}
.fs1{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:34.119467pt;}
.y1{bottom:46.798667pt;}
.y2f{bottom:66.141733pt;}
.y16c{bottom:66.141867pt;}
.ya5{bottom:66.429200pt;}
.yd2{bottom:69.693733pt;}
.y15b{bottom:69.693867pt;}
.y1b8{bottom:70.226933pt;}
.y175{bottom:70.849200pt;}
.y69{bottom:78.941733pt;}
.y16b{bottom:78.941867pt;}
.ya4{bottom:82.429200pt;}
.y2e{bottom:82.493733pt;}
.y1b7{bottom:84.893600pt;}
.y174{bottom:85.515867pt;}
.y2d{bottom:91.741733pt;}
.y15a{bottom:95.293867pt;}
.ya3{bottom:98.429200pt;}
.y1b6{bottom:99.560267pt;}
.y173{bottom:100.182533pt;}
.y68{bottom:104.541733pt;}
.y2c{bottom:108.093733pt;}
.y159{bottom:108.093867pt;}
.yd1{bottom:109.011867pt;}
.y1b5{bottom:114.226933pt;}
.ya2{bottom:114.429200pt;}
.y172{bottom:114.849200pt;}
.y67{bottom:117.341733pt;}
.y16a{bottom:117.341867pt;}
.yd0{bottom:125.011867pt;}
.y1b4{bottom:128.893600pt;}
.y171{bottom:129.515867pt;}
.y66{bottom:130.141733pt;}
.y169{bottom:130.141867pt;}
.ya1{bottom:130.429200pt;}
.y127{bottom:133.693733pt;}
.ycf{bottom:141.011867pt;}
.yf5{bottom:142.941733pt;}
.y168{bottom:142.941867pt;}
.y1b3{bottom:143.560267pt;}
.y170{bottom:144.182533pt;}
.ya0{bottom:146.429200pt;}
.y65{bottom:146.493733pt;}
.yf4{bottom:155.741733pt;}
.y167{bottom:155.741867pt;}
.yce{bottom:157.011867pt;}
.y2b{bottom:157.440000pt;}
.y1b2{bottom:158.226933pt;}
.y16f{bottom:158.849200pt;}
.y158{bottom:159.293867pt;}
.y9f{bottom:162.429200pt;}
.y126{bottom:168.541733pt;}
.y166{bottom:168.541867pt;}
.yf3{bottom:172.093733pt;}
.y2a{bottom:172.106667pt;}
.y1b1{bottom:172.893600pt;}
.ycd{bottom:173.011867pt;}
.y64{bottom:174.639467pt;}
.yf1{bottom:178.429200pt;}
.y125{bottom:181.341733pt;}
.y165{bottom:184.893867pt;}
.y29{bottom:186.773333pt;}
.y1b0{bottom:187.560267pt;}
.ycc{bottom:189.011867pt;}
.y16e{bottom:189.389867pt;}
.y63{bottom:190.961067pt;}
.y9e{bottom:194.303200pt;}
.yf0{bottom:194.429200pt;}
.y124{bottom:197.693733pt;}
.y1af{bottom:202.226933pt;}
.ycb{bottom:205.011867pt;}
.y62{bottom:207.282533pt;}
.yef{bottom:210.429200pt;}
.y123{bottom:210.493733pt;}
.y28{bottom:214.773333pt;}
.y1ae{bottom:216.893600pt;}
.yf2{bottom:220.759867pt;}
.yca{bottom:221.011867pt;}
.yee{bottom:226.429200pt;}
.y27{bottom:229.440000pt;}
.y1ad{bottom:231.560267pt;}
.y9d{bottom:236.759867pt;}
.yc9{bottom:237.011867pt;}
.y16d{bottom:237.137867pt;}
.y157{bottom:237.248267pt;}
.y61{bottom:239.478133pt;}
.yed{bottom:242.429200pt;}
.y1ac{bottom:246.226933pt;}
.y9c{bottom:252.759867pt;}
.yc8{bottom:253.011867pt;}
.y122{bottom:253.137867pt;}
.y156{bottom:253.248267pt;}
.yec{bottom:258.429200pt;}
.y1ab{bottom:260.893600pt;}
.y1ee{bottom:260.905733pt;}
.y9b{bottom:268.759867pt;}
.yc7{bottom:269.011867pt;}
.y121{bottom:269.137867pt;}
.y155{bottom:269.248267pt;}
.y26{bottom:270.773333pt;}
.y60{bottom:271.673600pt;}
.yeb{bottom:274.429200pt;}
.y1aa{bottom:275.560267pt;}
.y1ed{bottom:275.572400pt;}
.y9a{bottom:284.759867pt;}
.yc6{bottom:285.011867pt;}
.y120{bottom:285.137867pt;}
.y154{bottom:285.248267pt;}
.y25{bottom:285.440000pt;}
.y5f{bottom:287.995200pt;}
.y1a9{bottom:290.226933pt;}
.y1ec{bottom:290.239067pt;}
.yea{bottom:290.429200pt;}
.y24{bottom:300.106667pt;}
.y99{bottom:300.759867pt;}
.yc5{bottom:301.011867pt;}
.y11f{bottom:301.137867pt;}
.y153{bottom:301.248267pt;}
.y5e{bottom:304.316667pt;}
.y1a8{bottom:304.893600pt;}
.y1eb{bottom:304.905733pt;}
.ye9{bottom:306.429200pt;}
.y23{bottom:314.773333pt;}
.y98{bottom:316.759867pt;}
.yc4{bottom:317.011867pt;}
.y11e{bottom:317.137867pt;}
.y152{bottom:317.248267pt;}
.y1a7{bottom:319.560267pt;}
.y1ea{bottom:319.572400pt;}
.y5d{bottom:320.638267pt;}
.ye8{bottom:322.429200pt;}
.y22{bottom:329.440000pt;}
.y97{bottom:332.759867pt;}
.yc3{bottom:333.011867pt;}
.y11d{bottom:333.137867pt;}
.y151{bottom:333.248267pt;}
.y1a6{bottom:334.226933pt;}
.y1e9{bottom:334.239067pt;}
.y5c{bottom:336.959867pt;}
.ye7{bottom:338.429200pt;}
.y21{bottom:344.106667pt;}
.y96{bottom:348.759867pt;}
.y1a5{bottom:348.893600pt;}
.y1e8{bottom:348.905733pt;}
.yc2{bottom:349.011867pt;}
.y11c{bottom:349.137867pt;}
.y150{bottom:349.248267pt;}
.y5b{bottom:353.281467pt;}
.ye6{bottom:354.429200pt;}
.y20{bottom:358.773333pt;}
.y1a4{bottom:363.560267pt;}
.y1e7{bottom:363.572400pt;}
.y95{bottom:364.759867pt;}
.yc1{bottom:365.011867pt;}
.y11b{bottom:365.137867pt;}
.y14f{bottom:365.248267pt;}
.y5a{bottom:369.602933pt;}
.ye5{bottom:370.429200pt;}
.y1f{bottom:373.440000pt;}
.y1a3{bottom:378.226800pt;}
.y1e6{bottom:378.239067pt;}
.y94{bottom:380.759867pt;}
.yc0{bottom:381.011867pt;}
.y11a{bottom:381.137867pt;}
.y14e{bottom:381.248267pt;}
.y59{bottom:385.924533pt;}
.ye4{bottom:386.429200pt;}
.y1e{bottom:388.106667pt;}
.y1a2{bottom:392.893467pt;}
.y1e5{bottom:392.905733pt;}
.y93{bottom:396.759867pt;}
.ybf{bottom:397.011867pt;}
.y119{bottom:397.137867pt;}
.y14d{bottom:397.248267pt;}
.y58{bottom:402.246000pt;}
.ye3{bottom:402.429200pt;}
.y1d{bottom:402.773333pt;}
.y1a1{bottom:407.560133pt;}
.y1e4{bottom:407.572400pt;}
.y92{bottom:412.759867pt;}
.ybe{bottom:413.011867pt;}
.y118{bottom:413.137867pt;}
.y14c{bottom:413.248267pt;}
.y1c{bottom:417.440000pt;}
.ye2{bottom:418.429200pt;}
.y57{bottom:418.567600pt;}
.y1a0{bottom:422.226800pt;}
.y1e3{bottom:422.239067pt;}
.y91{bottom:428.759867pt;}
.ybd{bottom:429.011867pt;}
.y117{bottom:429.137867pt;}
.y14b{bottom:429.248267pt;}
.y1b{bottom:432.106667pt;}
.ye1{bottom:434.429200pt;}
.y56{bottom:434.889067pt;}
.y19f{bottom:436.893467pt;}
.y1e2{bottom:436.905733pt;}
.y90{bottom:444.759867pt;}
.ybc{bottom:445.011867pt;}
.y116{bottom:445.137867pt;}
.y14a{bottom:445.248267pt;}
.y1a{bottom:446.773333pt;}
.ye0{bottom:450.429200pt;}
.y19e{bottom:451.560133pt;}
.y1e1{bottom:451.572400pt;}
.y8f{bottom:460.759867pt;}
.ybb{bottom:461.011867pt;}
.y115{bottom:461.137867pt;}
.y149{bottom:461.248267pt;}
.y19{bottom:461.440000pt;}
.y19d{bottom:466.226800pt;}
.y1e0{bottom:466.239067pt;}
.ydf{bottom:466.429200pt;}
.y55{bottom:467.084667pt;}
.y18{bottom:476.106667pt;}
.y8e{bottom:476.759867pt;}
.yba{bottom:477.011867pt;}
.y114{bottom:477.137867pt;}
.y148{bottom:477.248267pt;}
.y19c{bottom:480.893467pt;}
.y1df{bottom:480.905733pt;}
.yde{bottom:482.429200pt;}
.y8d{bottom:492.759867pt;}
.yb9{bottom:493.011867pt;}
.y113{bottom:493.137867pt;}
.y147{bottom:493.248267pt;}
.y19b{bottom:495.560133pt;}
.y1de{bottom:495.572400pt;}
.ydd{bottom:498.429200pt;}
.y17{bottom:504.106667pt;}
.y8c{bottom:508.759867pt;}
.yb8{bottom:509.011867pt;}
.y112{bottom:509.137867pt;}
.y146{bottom:509.248267pt;}
.y19a{bottom:510.226800pt;}
.y1dd{bottom:510.239067pt;}
.ydc{bottom:514.429200pt;}
.y54{bottom:515.154267pt;}
.y8b{bottom:524.759867pt;}
.y199{bottom:524.893467pt;}
.y1dc{bottom:524.905733pt;}
.yb7{bottom:525.011867pt;}
.y111{bottom:525.137867pt;}
.y145{bottom:525.248267pt;}
.ydb{bottom:530.429200pt;}
.y53{bottom:531.475867pt;}
.y16{bottom:532.106667pt;}
.y198{bottom:539.560133pt;}
.y1db{bottom:539.572400pt;}
.y8a{bottom:540.759867pt;}
.yb6{bottom:541.011867pt;}
.y110{bottom:541.137867pt;}
.y144{bottom:541.248267pt;}
.yda{bottom:546.429200pt;}
.y52{bottom:547.797333pt;}
.y197{bottom:554.226800pt;}
.y1da{bottom:554.239067pt;}
.y89{bottom:556.759867pt;}
.yb5{bottom:557.011867pt;}
.y10f{bottom:557.137867pt;}
.y143{bottom:557.248267pt;}
.yd9{bottom:562.429200pt;}
.y51{bottom:564.118933pt;}
.y196{bottom:568.893467pt;}
.y1d9{bottom:568.905733pt;}
.y88{bottom:572.759867pt;}
.yb4{bottom:573.011867pt;}
.y10e{bottom:573.137867pt;}
.y142{bottom:573.248267pt;}
.yd8{bottom:578.429200pt;}
.y50{bottom:580.440533pt;}
.y15{bottom:582.783733pt;}
.y195{bottom:583.560133pt;}
.y1d8{bottom:583.572400pt;}
.y87{bottom:588.759867pt;}
.yb3{bottom:589.011867pt;}
.y10d{bottom:589.137867pt;}
.y141{bottom:589.248267pt;}
.yd7{bottom:594.429200pt;}
.y4f{bottom:596.762000pt;}
.y14{bottom:597.450400pt;}
.y194{bottom:598.226800pt;}
.y1d7{bottom:598.239067pt;}
.y86{bottom:604.759867pt;}
.yb2{bottom:605.011867pt;}
.y10c{bottom:605.137867pt;}
.y140{bottom:605.248267pt;}
.yd6{bottom:610.429200pt;}
.y13{bottom:612.117067pt;}
.y193{bottom:612.893467pt;}
.y1d6{bottom:612.905733pt;}
.y4e{bottom:613.083600pt;}
.y85{bottom:620.759867pt;}
.yb1{bottom:621.011867pt;}
.y10b{bottom:621.137867pt;}
.y13f{bottom:621.248267pt;}
.yd5{bottom:626.429200pt;}
.y12{bottom:626.783733pt;}
.y192{bottom:627.560133pt;}
.y1d5{bottom:627.572400pt;}
.y4d{bottom:629.405067pt;}
.y84{bottom:636.759867pt;}
.yb0{bottom:637.011867pt;}
.y10a{bottom:637.137867pt;}
.y13e{bottom:637.248267pt;}
.y11{bottom:641.450400pt;}
.y191{bottom:642.226800pt;}
.y1d4{bottom:642.239067pt;}
.yd4{bottom:642.429200pt;}
.y4c{bottom:645.726667pt;}
.y83{bottom:652.759867pt;}
.yaf{bottom:653.011867pt;}
.y109{bottom:653.137867pt;}
.y13d{bottom:653.248267pt;}
.y10{bottom:656.117067pt;}
.y190{bottom:656.893467pt;}
.y1d3{bottom:656.905733pt;}
.y4b{bottom:662.048267pt;}
.y82{bottom:668.759867pt;}
.yae{bottom:669.011867pt;}
.y108{bottom:669.137867pt;}
.y13c{bottom:669.248267pt;}
.yf{bottom:670.783733pt;}
.y18f{bottom:671.560133pt;}
.y1d2{bottom:671.572400pt;}
.yd3{bottom:674.303200pt;}
.y4a{bottom:678.369733pt;}
.y81{bottom:684.759867pt;}
.yad{bottom:685.011867pt;}
.y107{bottom:685.137867pt;}
.y13b{bottom:685.248267pt;}
.ye{bottom:685.450400pt;}
.y18e{bottom:686.226933pt;}
.y1d1{bottom:686.239067pt;}
.y49{bottom:694.691200pt;}
.yd{bottom:700.117067pt;}
.y80{bottom:700.759867pt;}
.y18d{bottom:700.893600pt;}
.y1d0{bottom:700.905733pt;}
.yac{bottom:701.011867pt;}
.y106{bottom:701.137867pt;}
.y13a{bottom:701.248267pt;}
.y48{bottom:711.012800pt;}
.yc{bottom:714.783733pt;}
.y18c{bottom:715.560267pt;}
.y1cf{bottom:715.572400pt;}
.y7f{bottom:716.759867pt;}
.yab{bottom:717.011867pt;}
.y105{bottom:717.137867pt;}
.y139{bottom:717.248267pt;}
.y47{bottom:727.334400pt;}
.yb{bottom:729.450400pt;}
.y18b{bottom:730.226933pt;}
.y1ce{bottom:730.239067pt;}
.y7e{bottom:732.759867pt;}
.yaa{bottom:733.011867pt;}
.y104{bottom:733.137867pt;}
.y138{bottom:733.248267pt;}
.y46{bottom:743.655867pt;}
.ya{bottom:744.117067pt;}
.y18a{bottom:744.893600pt;}
.y1cd{bottom:744.905733pt;}
.y7d{bottom:748.759867pt;}
.ya9{bottom:749.011867pt;}
.y103{bottom:749.137867pt;}
.y137{bottom:749.248267pt;}
.y9{bottom:758.783733pt;}
.y189{bottom:759.560267pt;}
.y1cc{bottom:759.572400pt;}
.y45{bottom:759.977467pt;}
.y7c{bottom:764.759867pt;}
.ya8{bottom:765.011867pt;}
.y102{bottom:765.137867pt;}
.y136{bottom:765.248267pt;}
.y8{bottom:773.450400pt;}
.y188{bottom:774.226933pt;}
.y1cb{bottom:774.239067pt;}
.y44{bottom:776.298933pt;}
.y7b{bottom:780.759867pt;}
.ya7{bottom:781.011867pt;}
.y101{bottom:781.137867pt;}
.y135{bottom:781.248267pt;}
.y7{bottom:788.117067pt;}
.y187{bottom:788.893600pt;}
.y1ca{bottom:788.905733pt;}
.y43{bottom:792.620667pt;}
.y7a{bottom:796.759867pt;}
.y164{bottom:797.011867pt;}
.y100{bottom:797.137867pt;}
.y134{bottom:797.248267pt;}
.y186{bottom:803.560267pt;}
.y1c9{bottom:803.572400pt;}
.y42{bottom:808.942133pt;}
.y79{bottom:812.759867pt;}
.ya6{bottom:812.885867pt;}
.y163{bottom:813.011867pt;}
.yff{bottom:813.137867pt;}
.y133{bottom:813.248267pt;}
.y6{bottom:816.117067pt;}
.y185{bottom:818.226933pt;}
.y1c8{bottom:818.239067pt;}
.y41{bottom:825.263733pt;}
.y78{bottom:828.759867pt;}
.y162{bottom:829.011867pt;}
.yfe{bottom:829.137867pt;}
.y132{bottom:829.248267pt;}
.y184{bottom:832.893600pt;}
.y1c7{bottom:832.905733pt;}
.y40{bottom:841.585200pt;}
.y77{bottom:844.759867pt;}
.y161{bottom:845.011867pt;}
.yfd{bottom:845.137867pt;}
.y131{bottom:845.248267pt;}
.y183{bottom:847.560267pt;}
.y1c6{bottom:847.572400pt;}
.y3f{bottom:857.906800pt;}
.y5{bottom:858.783733pt;}
.y76{bottom:860.759867pt;}
.y160{bottom:861.011867pt;}
.yfc{bottom:861.137867pt;}
.y130{bottom:861.248267pt;}
.y182{bottom:862.226933pt;}
.y1c5{bottom:862.239067pt;}
.y3e{bottom:874.228400pt;}
.y75{bottom:876.759867pt;}
.y181{bottom:876.893600pt;}
.y1c4{bottom:876.905733pt;}
.y15f{bottom:877.011867pt;}
.yfb{bottom:877.137867pt;}
.y12f{bottom:877.248267pt;}
.y4{bottom:888.117067pt;}
.y3d{bottom:890.549867pt;}
.y180{bottom:891.560267pt;}
.y1c3{bottom:891.572400pt;}
.y74{bottom:892.759867pt;}
.y15e{bottom:893.011867pt;}
.yfa{bottom:893.137867pt;}
.y12e{bottom:893.248267pt;}
.y17f{bottom:906.226933pt;}
.y1c2{bottom:906.239067pt;}
.y3c{bottom:906.871467pt;}
.y73{bottom:908.759867pt;}
.yf9{bottom:909.137867pt;}
.y12d{bottom:909.248267pt;}
.y3{bottom:912.117067pt;}
.y17e{bottom:920.893600pt;}
.y1c1{bottom:920.905733pt;}
.y3b{bottom:923.192933pt;}
.y72{bottom:924.759867pt;}
.y15d{bottom:924.885867pt;}
.yf8{bottom:925.137867pt;}
.y12c{bottom:925.248267pt;}
.y17d{bottom:935.560267pt;}
.y1c0{bottom:935.572400pt;}
.y3a{bottom:939.514533pt;}
.y71{bottom:940.759867pt;}
.y15c{bottom:940.885867pt;}
.yf7{bottom:941.137867pt;}
.y12b{bottom:941.248267pt;}
.y17c{bottom:950.226933pt;}
.y1bf{bottom:950.239067pt;}
.y32{bottom:951.992000pt;}
.y39{bottom:955.836000pt;}
.y70{bottom:956.759867pt;}
.y12a{bottom:957.248267pt;}
.y17b{bottom:964.893600pt;}
.y1be{bottom:964.905733pt;}
.y38{bottom:972.157600pt;}
.y6f{bottom:972.759867pt;}
.yf6{bottom:973.011867pt;}
.y129{bottom:973.248267pt;}
.y17a{bottom:979.560267pt;}
.y1bd{bottom:979.572400pt;}
.y31{bottom:983.992000pt;}
.y37{bottom:988.479200pt;}
.y6e{bottom:988.759867pt;}
.y179{bottom:994.226933pt;}
.y1bc{bottom:994.239067pt;}
.y30{bottom:999.992000pt;}
.y6d{bottom:1004.759867pt;}
.y36{bottom:1004.800667pt;}
.y128{bottom:1005.122267pt;}
.y178{bottom:1008.893600pt;}
.y1bb{bottom:1008.905733pt;}
.y6c{bottom:1020.759867pt;}
.y177{bottom:1023.560267pt;}
.y1ba{bottom:1023.572400pt;}
.y33{bottom:1035.093333pt;}
.y6b{bottom:1036.759867pt;}
.y35{bottom:1036.996267pt;}
.y176{bottom:1038.226933pt;}
.y1b9{bottom:1038.239067pt;}
.y34{bottom:1072.287467pt;}
.y6a{bottom:1072.287600pt;}
.he{height:23.228967pt;}
.h8{height:23.229500pt;}
.h2{height:34.421333pt;}
.h5{height:36.501562pt;}
.h9{height:37.437500pt;}
.ha{height:38.986667pt;}
.hb{height:39.338667pt;}
.hc{height:40.161458pt;}
.hf{height:43.989063pt;}
.h6{height:45.860937pt;}
.hd{height:51.476562pt;}
.h4{height:53.816406pt;}
.h7{height:65.515625pt;}
.h3{height:70.195312pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:75.590533pt;}
.x3{left:76.535467pt;}
.x4{left:85.669333pt;}
.x6{left:94.523867pt;}
.x5{left:644.521200pt;}
.x7{left:707.731600pt;}
.x1{left:712.920933pt;}
}




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