
    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_ae282cdbb9c4c2c93cc00be8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.911000;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_61fa1cbfd8b67c0ef645a197.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.137000;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_3947261f85725f93b66101a8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.866000;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_fb73aad2f0f7f3dd8f7003f7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.151000;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_c8cb7c6802f83c54d296dc14.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.689453;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_efebe50c0e4f3389b5c233e6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.984048;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_907c6257e47768e078d648a8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.984000;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_15790a1108f46620e7288ea2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.703000;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_6e7bc0a87a3aa1cb0bea0919.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.984000;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_b5aeffdf6ae10555988e72bd.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.984000;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_2d825f55c4fc18a3cd0dabd9.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;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_9f3b3ce4a437a11442c70ca3.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_b4eb1e2b48168c35f3e6d9fd.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.984000;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_b9106174a6e283ebe1256075.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.984000;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_1552bdc64fdb0c95929996b7.woff2')format("woff");}.fff{font-family:fff;line-height:0.984000;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_80a2b6e52260fea813e22a24.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.984000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_33b73a58c074d510918a4aa9.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.984000;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;}
.m3{transform:matrix(0.000000,-0.249625,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249625,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249625,0.250000,0.000000,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);}
.m1{transform:matrix(0.250372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250372,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250375,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-17.980313px;}
.v3{vertical-align:-2.267999px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.976851px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000540px;}
.ls0{letter-spacing:0.002400px;}
.ls3{letter-spacing:0.002832px;}
.ls4{letter-spacing:14.530314px;}
.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;}
}
.ws1{word-spacing:-29.999988px;}
.ws0{word-spacing:-26.999989px;}
.ws5{word-spacing:-16.499993px;}
.ws4{word-spacing:-15.839994px;}
.ws3{word-spacing:-13.499995px;}
.ws2{word-spacing:-9.234716px;}
.ws6{word-spacing:0.000000px;}
.ws7{word-spacing:25.764999px;}
.wsc{word-spacing:29.305347px;}
.ws9{word-spacing:29.334444px;}
.wsa{word-spacing:32.929016px;}
.wsb{word-spacing:34.086821px;}
.ws8{word-spacing:34.199648px;}
._24{margin-left:-12.094512px;}
._2a{margin-left:-10.907547px;}
._14{margin-left:-8.224993px;}
._4{margin-left:-6.415886px;}
._13{margin-left:-5.364270px;}
._0{margin-left:-3.995858px;}
._2{margin-left:-2.373573px;}
._3{margin-left:-1.133319px;}
._1{width:1.108828px;}
._7{width:2.861973px;}
._8{width:3.904413px;}
._6{width:4.965516px;}
._5{width:6.047972px;}
._b{width:7.853918px;}
._c{width:9.172624px;}
._d{width:10.239864px;}
._9{width:11.417665px;}
._a{width:13.133137px;}
._e{width:14.320146px;}
._20{width:15.549233px;}
._29{width:17.003289px;}
._f{width:18.478937px;}
._12{width:19.883728px;}
._23{width:21.184192px;}
._10{width:22.373999px;}
._11{width:23.694819px;}
._22{width:25.870406px;}
._2b{width:28.050310px;}
._28{width:33.119622px;}
._25{width:34.649751px;}
._27{width:35.970045px;}
._26{width:37.368456px;}
._2c{width:47.717737px;}
._1f{width:49.732478px;}
._16{width:52.248211px;}
._1b{width:53.737412px;}
._19{width:55.839841px;}
._15{width:57.626822px;}
._1a{width:59.493315px;}
._1c{width:60.968395px;}
._17{width:63.523276px;}
._1e{width:64.625126px;}
._21{width:66.134819px;}
._1d{width:70.169659px;}
._18{width:128.236366px;}
.fc1{color:transparent;}
.fc0{color:rgb(35,31,32);}
.fs2{font-size:25.799990px;}
.fs7{font-size:31.481987px;}
.fs6{font-size:38.477985px;}
.fs9{font-size:46.703981px;}
.fs8{font-size:52.925979px;}
.fsa{font-size:53.877578px;}
.fsb{font-size:53.958578px;}
.fs0{font-size:53.999978px;}
.fs1{font-size:59.999976px;}
.fs4{font-size:65.999974px;}
.fs3{font-size:71.999971px;}
.fs5{font-size:83.999966px;}
.y0{bottom:0.000000px;}
.y4{bottom:9.222828px;}
.y2e{bottom:9.224028px;}
.y7e{bottom:37.715140px;}
.y76{bottom:38.183041px;}
.y7a{bottom:41.303138px;}
.y72{bottom:41.769539px;}
.y8{bottom:54.487850px;}
.y173{bottom:55.018849px;}
.y5b{bottom:55.551349px;}
.y6{bottom:56.118349px;}
.y2c{bottom:56.330314px;}
.y2a{bottom:57.154849px;}
.y2{bottom:57.580848px;}
.y5{bottom:63.618346px;}
.y2b{bottom:63.830311px;}
.y96{bottom:94.224334px;}
.y29{bottom:99.510332px;}
.yf4{bottom:102.342331px;}
.y120{bottom:102.343081px;}
.y6a{bottom:102.414331px;}
.y5a{bottom:102.684330px;}
.yca{bottom:103.108830px;}
.y149{bottom:103.109580px;}
.y95{bottom:114.024326px;}
.y28{bottom:119.310324px;}
.y1{bottom:121.325580px;}
.yf3{bottom:122.142323px;}
.y11f{bottom:122.143073px;}
.y69{bottom:122.214323px;}
.y59{bottom:122.484322px;}
.yc9{bottom:122.908822px;}
.y148{bottom:122.909572px;}
.y172{bottom:122.910322px;}
.y94{bottom:133.824318px;}
.y27{bottom:139.110316px;}
.yf2{bottom:141.942315px;}
.y11e{bottom:141.943065px;}
.y68{bottom:142.014315px;}
.y58{bottom:142.284315px;}
.yc8{bottom:142.708814px;}
.y147{bottom:142.709564px;}
.y171{bottom:142.710314px;}
.y93{bottom:153.624310px;}
.y26{bottom:158.910308px;}
.yf1{bottom:161.742307px;}
.y11d{bottom:161.743057px;}
.y67{bottom:161.814307px;}
.y57{bottom:162.084307px;}
.yc7{bottom:162.508806px;}
.y146{bottom:162.509556px;}
.y3{bottom:169.797600px;}
.y2d{bottom:170.222400px;}
.y92{bottom:173.424302px;}
.y25{bottom:178.710300px;}
.yf0{bottom:181.542299px;}
.y11c{bottom:181.543049px;}
.y66{bottom:181.614299px;}
.y56{bottom:181.884299px;}
.yc6{bottom:182.308799px;}
.y145{bottom:182.309549px;}
.y91{bottom:193.224294px;}
.y24{bottom:198.510292px;}
.yef{bottom:201.342291px;}
.y11b{bottom:201.343041px;}
.y65{bottom:201.414291px;}
.y55{bottom:201.684291px;}
.yc5{bottom:202.108791px;}
.y144{bottom:202.109541px;}
.y170{bottom:202.110291px;}
.y90{bottom:213.024286px;}
.yee{bottom:221.142283px;}
.y11a{bottom:221.143033px;}
.y64{bottom:221.214283px;}
.y54{bottom:221.484283px;}
.yc4{bottom:221.908783px;}
.y143{bottom:221.909533px;}
.y16f{bottom:221.910283px;}
.y8f{bottom:232.824278px;}
.yed{bottom:240.942275px;}
.y119{bottom:240.943025px;}
.y63{bottom:241.014275px;}
.y53{bottom:241.284275px;}
.yc3{bottom:241.708775px;}
.y142{bottom:241.709525px;}
.y16e{bottom:241.710275px;}
.y8e{bottom:252.624270px;}
.y7{bottom:260.611767px;}
.yec{bottom:260.742267px;}
.y118{bottom:260.743017px;}
.y62{bottom:260.814267px;}
.y52{bottom:261.084267px;}
.yc2{bottom:261.508767px;}
.y141{bottom:261.509517px;}
.y16d{bottom:261.510267px;}
.y8d{bottom:272.424263px;}
.y117{bottom:280.543009px;}
.y61{bottom:280.614259px;}
.y51{bottom:280.884259px;}
.yc1{bottom:281.308759px;}
.y140{bottom:281.309509px;}
.y16c{bottom:281.310259px;}
.y8c{bottom:292.224255px;}
.yeb{bottom:300.342251px;}
.y116{bottom:300.343001px;}
.y60{bottom:300.414251px;}
.y50{bottom:300.684251px;}
.yc0{bottom:301.108751px;}
.y13f{bottom:301.109501px;}
.y16b{bottom:301.110251px;}
.y23{bottom:305.349669px;}
.y8b{bottom:312.024247px;}
.yea{bottom:320.141493px;}
.y115{bottom:320.142993px;}
.y5f{bottom:320.214243px;}
.y4f{bottom:320.484243px;}
.ybf{bottom:320.908743px;}
.y13e{bottom:320.909493px;}
.y16a{bottom:320.910243px;}
.y22{bottom:321.549663px;}
.y8a{bottom:331.824239px;}
.ye9{bottom:339.940735px;}
.y114{bottom:339.942985px;}
.y6b{bottom:340.014235px;}
.y4e{bottom:340.284235px;}
.ybe{bottom:340.708735px;}
.y13d{bottom:340.709485px;}
.y169{bottom:340.710235px;}
.y89{bottom:351.624231px;}
.y21{bottom:353.949650px;}
.y9e{bottom:358.633728px;}
.ye8{bottom:359.740728px;}
.y113{bottom:359.742978px;}
.y5e{bottom:359.814228px;}
.y4d{bottom:360.084227px;}
.ybd{bottom:360.508727px;}
.y13c{bottom:360.509477px;}
.y168{bottom:360.510227px;}
.y20{bottom:370.149643px;}
.y88{bottom:371.424223px;}
.y9d{bottom:374.833722px;}
.ye7{bottom:379.539970px;}
.y112{bottom:379.542970px;}
.y5d{bottom:379.614220px;}
.y4c{bottom:379.884220px;}
.ybc{bottom:380.308719px;}
.y13b{bottom:380.309469px;}
.y167{bottom:380.310219px;}
.y1f{bottom:386.349637px;}
.y9c{bottom:391.033715px;}
.y87{bottom:391.224215px;}
.ye6{bottom:399.339212px;}
.y111{bottom:399.342212px;}
.y5c{bottom:399.414212px;}
.y4b{bottom:399.684212px;}
.ybb{bottom:400.108711px;}
.y13a{bottom:400.109461px;}
.y166{bottom:400.110211px;}
.y1e{bottom:402.549630px;}
.y9b{bottom:407.233709px;}
.y86{bottom:411.024207px;}
.y1d{bottom:418.749624px;}
.ye5{bottom:419.139204px;}
.y110{bottom:419.142204px;}
.y4a{bottom:419.484204px;}
.yba{bottom:419.908704px;}
.y139{bottom:419.909454px;}
.y165{bottom:419.910204px;}
.y85{bottom:430.824199px;}
.y1c{bottom:434.949617px;}
.y10f{bottom:438.942196px;}
.y49{bottom:439.284196px;}
.yb9{bottom:439.708696px;}
.y138{bottom:439.709446px;}
.y164{bottom:439.710196px;}
.y84{bottom:450.624191px;}
.y1b{bottom:451.149611px;}
.ye4{bottom:458.739188px;}
.y10e{bottom:458.742188px;}
.y48{bottom:459.084188px;}
.yb8{bottom:459.508688px;}
.y137{bottom:459.509438px;}
.y163{bottom:459.510188px;}
.y6d{bottom:461.431687px;}
.y1a{bottom:467.349605px;}
.y83{bottom:470.424183px;}
.y6c{bottom:477.631680px;}
.ye3{bottom:478.539180px;}
.y10d{bottom:478.542180px;}
.y47{bottom:478.884180px;}
.yb7{bottom:479.308680px;}
.y136{bottom:479.309430px;}
.y162{bottom:479.310180px;}
.y19{bottom:483.549598px;}
.y82{bottom:490.224175px;}
.y6e{bottom:491.559175px;}
.ye2{bottom:498.339172px;}
.y10c{bottom:498.342172px;}
.y46{bottom:498.684172px;}
.yb6{bottom:499.108672px;}
.y135{bottom:499.109422px;}
.y161{bottom:499.110172px;}
.y18{bottom:499.749592px;}
.y78{bottom:508.621668px;}
.y81{bottom:510.024167px;}
.y17{bottom:515.949585px;}
.ye1{bottom:518.139164px;}
.y10b{bottom:518.142164px;}
.y45{bottom:518.484164px;}
.yb5{bottom:518.908664px;}
.y134{bottom:518.909414px;}
.y160{bottom:518.910164px;}
.y80{bottom:529.824160px;}
.y16{bottom:532.149579px;}
.y77{bottom:537.375157px;}
.ye0{bottom:537.939156px;}
.y10a{bottom:537.942156px;}
.y44{bottom:538.284156px;}
.yb4{bottom:538.708656px;}
.y133{bottom:538.709406px;}
.y15f{bottom:538.710156px;}
.y15{bottom:548.349572px;}
.y7f{bottom:549.624152px;}
.ydf{bottom:557.739148px;}
.y109{bottom:557.742148px;}
.y43{bottom:558.084148px;}
.yb3{bottom:558.508648px;}
.y132{bottom:558.509398px;}
.y15e{bottom:558.510148px;}
.y7b{bottom:560.728647px;}
.y14{bottom:564.549566px;}
.yde{bottom:577.539140px;}
.y108{bottom:577.542140px;}
.y42{bottom:577.884140px;}
.yb2{bottom:578.308640px;}
.y131{bottom:578.309390px;}
.y15d{bottom:578.310140px;}
.y13{bottom:580.749559px;}
.y12{bottom:596.949553px;}
.ydd{bottom:597.339133px;}
.y107{bottom:597.342133px;}
.y41{bottom:597.684132px;}
.yb1{bottom:598.108632px;}
.y130{bottom:598.109382px;}
.y15c{bottom:598.110132px;}
.y9a{bottom:603.006130px;}
.y79{bottom:612.894600px;}
.y11{bottom:613.149546px;}
.ydc{bottom:617.139125px;}
.y106{bottom:617.142125px;}
.y40{bottom:617.484124px;}
.yb0{bottom:617.908624px;}
.y12f{bottom:617.909374px;}
.y15b{bottom:617.910124px;}
.y99{bottom:619.206124px;}
.y98{bottom:635.406117px;}
.ydb{bottom:636.939117px;}
.y105{bottom:636.942117px;}
.y3f{bottom:637.284117px;}
.yaf{bottom:637.708616px;}
.y12e{bottom:637.709366px;}
.y15a{bottom:637.710116px;}
.y7d{bottom:646.054103px;}
.y97{bottom:651.606111px;}
.yda{bottom:656.739109px;}
.y104{bottom:656.742109px;}
.y3e{bottom:657.084109px;}
.yae{bottom:657.508608px;}
.y12d{bottom:657.509358px;}
.y159{bottom:657.510108px;}
.y7c{bottom:660.412607px;}
.y10{bottom:661.749527px;}
.yd9{bottom:676.539101px;}
.y103{bottom:676.542101px;}
.y3d{bottom:676.884101px;}
.yad{bottom:677.308601px;}
.y12c{bottom:677.309351px;}
.y158{bottom:677.310101px;}
.yf{bottom:682.444598px;}
.yd8{bottom:696.339093px;}
.y102{bottom:696.342093px;}
.y3c{bottom:696.684093px;}
.yac{bottom:697.108593px;}
.y12b{bottom:697.109343px;}
.y157{bottom:697.110093px;}
.ye{bottom:698.644592px;}
.yd{bottom:710.349507px;}
.yd7{bottom:716.139085px;}
.y101{bottom:716.142085px;}
.y3b{bottom:716.484085px;}
.yab{bottom:716.908585px;}
.y12a{bottom:716.909335px;}
.y156{bottom:716.910085px;}
.yc{bottom:731.044579px;}
.yd6{bottom:735.939077px;}
.y100{bottom:735.942077px;}
.y3a{bottom:736.284077px;}
.yaa{bottom:736.708577px;}
.y129{bottom:736.709327px;}
.y155{bottom:736.710077px;}
.yd5{bottom:755.739069px;}
.yff{bottom:755.742069px;}
.y39{bottom:756.084069px;}
.ya9{bottom:756.508569px;}
.y128{bottom:756.509319px;}
.y154{bottom:756.510069px;}
.y70{bottom:757.416069px;}
.yb{bottom:764.349816px;}
.yd4{bottom:775.539061px;}
.yfe{bottom:775.542061px;}
.y38{bottom:775.884061px;}
.ya8{bottom:776.306461px;}
.y127{bottom:776.307211px;}
.y153{bottom:776.307961px;}
.y6f{bottom:786.144057px;}
.yd3{bottom:795.339053px;}
.yfd{bottom:795.342053px;}
.y37{bottom:795.684053px;}
.ya7{bottom:796.108553px;}
.y126{bottom:796.109303px;}
.y152{bottom:796.110053px;}
.ya{bottom:807.549798px;}
.y73{bottom:808.603548px;}
.yd2{bottom:815.139045px;}
.yfc{bottom:815.142045px;}
.y36{bottom:815.484045px;}
.ya6{bottom:815.908545px;}
.y125{bottom:815.909295px;}
.y151{bottom:815.910045px;}
.yd1{bottom:834.939037px;}
.yfb{bottom:834.942037px;}
.y35{bottom:835.284037px;}
.ya5{bottom:835.708537px;}
.y124{bottom:835.709287px;}
.y150{bottom:835.710037px;}
.y9{bottom:854.349030px;}
.yd0{bottom:854.739030px;}
.yfa{bottom:854.742030px;}
.y34{bottom:855.084029px;}
.ya4{bottom:855.508529px;}
.y123{bottom:855.509279px;}
.y14f{bottom:855.510029px;}
.y71{bottom:860.322600px;}
.ycf{bottom:874.539022px;}
.yf9{bottom:874.542022px;}
.y33{bottom:874.884022px;}
.ya3{bottom:875.306421px;}
.y122{bottom:875.307171px;}
.y14e{bottom:875.307921px;}
.yce{bottom:894.339014px;}
.yf8{bottom:894.342014px;}
.y32{bottom:894.684014px;}
.y75{bottom:894.817979px;}
.ya2{bottom:895.108513px;}
.y121{bottom:895.109263px;}
.y14d{bottom:895.110013px;}
.y74{bottom:909.202508px;}
.ycd{bottom:914.139006px;}
.yf7{bottom:914.142006px;}
.y31{bottom:914.484006px;}
.ya1{bottom:914.908506px;}
.y14c{bottom:914.909256px;}
.ycc{bottom:933.938998px;}
.yf6{bottom:933.941998px;}
.y30{bottom:934.283998px;}
.ya0{bottom:934.708498px;}
.y14b{bottom:934.709248px;}
.ycb{bottom:953.738990px;}
.yf5{bottom:953.741990px;}
.y2f{bottom:954.083990px;}
.y9f{bottom:954.508490px;}
.y14a{bottom:954.509240px;}
.h5{height:23.968190px;}
.ha{height:28.891668px;}
.h3{height:29.763360px;}
.hf{height:29.764620px;}
.h13{height:34.001775px;}
.h12{height:35.275372px;}
.h11{height:38.609985px;}
.hc{height:38.612556px;}
.h14{height:39.224350px;}
.h16{height:39.283321px;}
.h4{height:42.179983px;}
.h18{height:42.899983px;}
.h10{height:46.388231px;}
.hb{height:46.871981px;}
.hd{height:47.189981px;}
.h7{height:47.193124px;}
.h6{height:48.656231px;}
.h9{height:49.488610px;}
.h2{height:52.079979px;}
.he{height:57.287977px;}
.h8{height:72.911971px;}
.h17{height:248.329800px;}
.h15{height:248.333400px;}
.h1{height:1020.472200px;}
.h0{height:1263.000000px;}
.w2{width:72.284040px;}
.w3{width:248.698800px;}
.w4{width:249.577200px;}
.w1{width:722.835000px;}
.w0{width:892.500000px;}
.x4{left:-79.441915px;}
.x0{left:0.000000px;}
.x14{left:13.490881px;}
.x19{left:14.845941px;}
.xf{left:52.936895px;}
.x2{left:53.999944px;}
.x20{left:55.063144px;}
.x24{left:56.338744px;}
.x21{left:70.136638px;}
.xd{left:71.743287px;}
.x23{left:73.346937px;}
.x1{left:84.802500px;}
.xb{left:85.889932px;}
.x15{left:91.531429px;}
.x1c{left:107.713423px;}
.x11{left:113.101421px;}
.x13{left:134.047260px;}
.x1d{left:135.590912px;}
.x16{left:137.386411px;}
.x12{left:139.205910px;}
.x1a{left:340.688830px;}
.x1e{left:356.872323px;}
.x5{left:359.291822px;}
.x17{left:362.258821px;}
.x3{left:367.984800px;}
.x22{left:369.247018px;}
.x8{left:370.417333px;}
.x25{left:371.585127px;}
.x18{left:381.848400px;}
.x9{left:383.173418px;}
.x1f{left:384.743812px;}
.x1b{left:386.566311px;}
.xe{left:388.161861px;}
.xc{left:446.857200px;}
.x27{left:455.473419px;}
.x26{left:462.172791px;}
.x6{left:472.109777px;}
.xa{left:529.964754px;}
.x10{left:546.635747px;}
.x7{left:649.208706px;}
.x28{left:650.551206px;}
@media print{
.v2{vertical-align:-15.982500pt;}
.v3{vertical-align:-2.015999pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.534979pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000480pt;}
.ls0{letter-spacing:0.002133pt;}
.ls3{letter-spacing:0.002517pt;}
.ls4{letter-spacing:12.915835pt;}
.ws1{word-spacing:-26.666656pt;}
.ws0{word-spacing:-23.999990pt;}
.ws5{word-spacing:-14.666661pt;}
.ws4{word-spacing:-14.079994pt;}
.ws3{word-spacing:-11.999995pt;}
.ws2{word-spacing:-8.208637pt;}
.ws6{word-spacing:0.000000pt;}
.ws7{word-spacing:22.902221pt;}
.wsc{word-spacing:26.049197pt;}
.ws9{word-spacing:26.075061pt;}
.wsa{word-spacing:29.270236pt;}
.wsb{word-spacing:30.299397pt;}
.ws8{word-spacing:30.399688pt;}
._24{margin-left:-10.750678pt;}
._2a{margin-left:-9.695597pt;}
._14{margin-left:-7.311105pt;}
._4{margin-left:-5.703010pt;}
._13{margin-left:-4.768240pt;}
._0{margin-left:-3.551874pt;}
._2{margin-left:-2.109843pt;}
._3{margin-left:-1.007395pt;}
._1{width:0.985625pt;}
._7{width:2.543976pt;}
._8{width:3.470589pt;}
._6{width:4.413792pt;}
._5{width:5.375975pt;}
._b{width:6.981260pt;}
._c{width:8.153443pt;}
._d{width:9.102101pt;}
._9{width:10.149036pt;}
._a{width:11.673899pt;}
._e{width:12.729019pt;}
._20{width:13.821541pt;}
._29{width:15.114035pt;}
._f{width:16.425721pt;}
._12{width:17.674425pt;}
._23{width:18.830392pt;}
._10{width:19.887999pt;}
._11{width:21.062062pt;}
._22{width:22.995916pt;}
._2b{width:24.933608pt;}
._28{width:29.439664pt;}
._25{width:30.799778pt;}
._27{width:31.973373pt;}
._26{width:33.216406pt;}
._2c{width:42.415766pt;}
._1f{width:44.206647pt;}
._16{width:46.442854pt;}
._1b{width:47.766588pt;}
._19{width:49.635414pt;}
._15{width:51.223842pt;}
._1a{width:52.882947pt;}
._1c{width:54.194129pt;}
._17{width:56.465134pt;}
._1e{width:57.444556pt;}
._21{width:58.786506pt;}
._1d{width:62.373030pt;}
._18{width:113.987881pt;}
.fs2{font-size:22.933324pt;}
.fs7{font-size:27.983989pt;}
.fs6{font-size:34.202653pt;}
.fs9{font-size:41.514650pt;}
.fs8{font-size:47.045315pt;}
.fsa{font-size:47.891181pt;}
.fsb{font-size:47.963181pt;}
.fs0{font-size:47.999981pt;}
.fs1{font-size:53.333312pt;}
.fs4{font-size:58.666643pt;}
.fs3{font-size:63.999974pt;}
.fs5{font-size:74.666637pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:8.198070pt;}
.y2e{bottom:8.199136pt;}
.y7e{bottom:33.524569pt;}
.y76{bottom:33.940481pt;}
.y7a{bottom:36.713901pt;}
.y72{bottom:37.128479pt;}
.y8{bottom:48.433644pt;}
.y173{bottom:48.905644pt;}
.y5b{bottom:49.378977pt;}
.y6{bottom:49.882977pt;}
.y2c{bottom:50.071390pt;}
.y2a{bottom:50.804310pt;}
.y2{bottom:51.182976pt;}
.y5{bottom:56.549641pt;}
.y2b{bottom:56.738054pt;}
.y96{bottom:83.754963pt;}
.y29{bottom:88.453628pt;}
.yf4{bottom:90.970960pt;}
.y120{bottom:90.971627pt;}
.y6a{bottom:91.034960pt;}
.y5a{bottom:91.274960pt;}
.yca{bottom:91.652294pt;}
.y149{bottom:91.652960pt;}
.y95{bottom:101.354956pt;}
.y28{bottom:106.053621pt;}
.y1{bottom:107.844960pt;}
.yf3{bottom:108.570953pt;}
.y11f{bottom:108.571620pt;}
.y69{bottom:108.634953pt;}
.y59{bottom:108.874953pt;}
.yc9{bottom:109.252286pt;}
.y148{bottom:109.252953pt;}
.y172{bottom:109.253620pt;}
.y94{bottom:118.954949pt;}
.y27{bottom:123.653614pt;}
.yf2{bottom:126.170946pt;}
.y11e{bottom:126.171613pt;}
.y68{bottom:126.234946pt;}
.y58{bottom:126.474946pt;}
.yc8{bottom:126.852279pt;}
.y147{bottom:126.852946pt;}
.y171{bottom:126.853613pt;}
.y93{bottom:136.554942pt;}
.y26{bottom:141.253607pt;}
.yf1{bottom:143.770939pt;}
.y11d{bottom:143.771606pt;}
.y67{bottom:143.834939pt;}
.y57{bottom:144.074939pt;}
.yc7{bottom:144.452272pt;}
.y146{bottom:144.452939pt;}
.y3{bottom:150.931200pt;}
.y2d{bottom:151.308800pt;}
.y92{bottom:154.154935pt;}
.y25{bottom:158.853600pt;}
.yf0{bottom:161.370932pt;}
.y11c{bottom:161.371599pt;}
.y66{bottom:161.434932pt;}
.y56{bottom:161.674932pt;}
.yc6{bottom:162.052265pt;}
.y145{bottom:162.052932pt;}
.y91{bottom:171.754928pt;}
.y24{bottom:176.453593pt;}
.yef{bottom:178.970925pt;}
.y11b{bottom:178.971592pt;}
.y65{bottom:179.034925pt;}
.y55{bottom:179.274925pt;}
.yc5{bottom:179.652258pt;}
.y144{bottom:179.652925pt;}
.y170{bottom:179.653592pt;}
.y90{bottom:189.354921pt;}
.yee{bottom:196.570918pt;}
.y11a{bottom:196.571585pt;}
.y64{bottom:196.634918pt;}
.y54{bottom:196.874918pt;}
.yc4{bottom:197.252251pt;}
.y143{bottom:197.252918pt;}
.y16f{bottom:197.253585pt;}
.y8f{bottom:206.954914pt;}
.yed{bottom:214.170911pt;}
.y119{bottom:214.171578pt;}
.y63{bottom:214.234911pt;}
.y53{bottom:214.474911pt;}
.yc3{bottom:214.852244pt;}
.y142{bottom:214.852911pt;}
.y16e{bottom:214.853578pt;}
.y8e{bottom:224.554907pt;}
.y7{bottom:231.654904pt;}
.yec{bottom:231.770904pt;}
.y118{bottom:231.771571pt;}
.y62{bottom:231.834904pt;}
.y52{bottom:232.074904pt;}
.yc2{bottom:232.452237pt;}
.y141{bottom:232.452904pt;}
.y16d{bottom:232.453571pt;}
.y8d{bottom:242.154900pt;}
.y117{bottom:249.371564pt;}
.y61{bottom:249.434897pt;}
.y51{bottom:249.674897pt;}
.yc1{bottom:250.052230pt;}
.y140{bottom:250.052897pt;}
.y16c{bottom:250.053564pt;}
.y8c{bottom:259.754893pt;}
.yeb{bottom:266.970890pt;}
.y116{bottom:266.971557pt;}
.y60{bottom:267.034890pt;}
.y50{bottom:267.274890pt;}
.yc0{bottom:267.652223pt;}
.y13f{bottom:267.652890pt;}
.y16b{bottom:267.653556pt;}
.y23{bottom:271.421928pt;}
.y8b{bottom:277.354886pt;}
.yea{bottom:284.570216pt;}
.y115{bottom:284.571550pt;}
.y5f{bottom:284.634883pt;}
.y4f{bottom:284.874883pt;}
.ybf{bottom:285.252216pt;}
.y13e{bottom:285.252883pt;}
.y16a{bottom:285.253549pt;}
.y22{bottom:285.821923pt;}
.y8a{bottom:294.954879pt;}
.ye9{bottom:302.169543pt;}
.y114{bottom:302.171543pt;}
.y6b{bottom:302.234876pt;}
.y4e{bottom:302.474876pt;}
.ybe{bottom:302.852209pt;}
.y13d{bottom:302.852876pt;}
.y169{bottom:302.853542pt;}
.y89{bottom:312.554872pt;}
.y21{bottom:314.621911pt;}
.y9e{bottom:318.785536pt;}
.ye8{bottom:319.769536pt;}
.y113{bottom:319.771536pt;}
.y5e{bottom:319.834869pt;}
.y4d{bottom:320.074869pt;}
.ybd{bottom:320.452202pt;}
.y13c{bottom:320.452869pt;}
.y168{bottom:320.453535pt;}
.y20{bottom:329.021905pt;}
.y88{bottom:330.154865pt;}
.y9d{bottom:333.185530pt;}
.ye7{bottom:337.368862pt;}
.y112{bottom:337.371529pt;}
.y5d{bottom:337.434862pt;}
.y4c{bottom:337.674862pt;}
.ybc{bottom:338.052195pt;}
.y13b{bottom:338.052862pt;}
.y167{bottom:338.053528pt;}
.y1f{bottom:343.421899pt;}
.y9c{bottom:347.585524pt;}
.y87{bottom:347.754858pt;}
.ye6{bottom:354.968188pt;}
.y111{bottom:354.970855pt;}
.y5c{bottom:355.034855pt;}
.y4b{bottom:355.274855pt;}
.ybb{bottom:355.652188pt;}
.y13a{bottom:355.652855pt;}
.y166{bottom:355.653521pt;}
.y1e{bottom:357.821894pt;}
.y9b{bottom:361.985519pt;}
.y86{bottom:365.354851pt;}
.y1d{bottom:372.221888pt;}
.ye5{bottom:372.568181pt;}
.y110{bottom:372.570848pt;}
.y4a{bottom:372.874848pt;}
.yba{bottom:373.252181pt;}
.y139{bottom:373.252848pt;}
.y165{bottom:373.253514pt;}
.y85{bottom:382.954844pt;}
.y1c{bottom:386.621882pt;}
.y10f{bottom:390.170841pt;}
.y49{bottom:390.474841pt;}
.yb9{bottom:390.852174pt;}
.y138{bottom:390.852841pt;}
.y164{bottom:390.853507pt;}
.y84{bottom:400.554837pt;}
.y1b{bottom:401.021876pt;}
.ye4{bottom:407.768167pt;}
.y10e{bottom:407.770834pt;}
.y48{bottom:408.074834pt;}
.yb8{bottom:408.452167pt;}
.y137{bottom:408.452833pt;}
.y163{bottom:408.453500pt;}
.y6d{bottom:410.161499pt;}
.y1a{bottom:415.421871pt;}
.y83{bottom:418.154830pt;}
.y6c{bottom:424.561494pt;}
.ye3{bottom:425.368160pt;}
.y10d{bottom:425.370827pt;}
.y47{bottom:425.674827pt;}
.yb7{bottom:426.052160pt;}
.y136{bottom:426.052826pt;}
.y162{bottom:426.053493pt;}
.y19{bottom:429.821865pt;}
.y82{bottom:435.754823pt;}
.y6e{bottom:436.941489pt;}
.ye2{bottom:442.968153pt;}
.y10c{bottom:442.970820pt;}
.y46{bottom:443.274820pt;}
.yb6{bottom:443.652153pt;}
.y135{bottom:443.652819pt;}
.y161{bottom:443.653486pt;}
.y18{bottom:444.221859pt;}
.y78{bottom:452.108149pt;}
.y81{bottom:453.354816pt;}
.y17{bottom:458.621853pt;}
.ye1{bottom:460.568146pt;}
.y10b{bottom:460.570813pt;}
.y45{bottom:460.874813pt;}
.yb5{bottom:461.252146pt;}
.y134{bottom:461.252812pt;}
.y160{bottom:461.253479pt;}
.y80{bottom:470.954808pt;}
.y16{bottom:473.021848pt;}
.y77{bottom:477.666806pt;}
.ye0{bottom:478.168139pt;}
.y10a{bottom:478.170806pt;}
.y44{bottom:478.474805pt;}
.yb4{bottom:478.852139pt;}
.y133{bottom:478.852805pt;}
.y15f{bottom:478.853472pt;}
.y15{bottom:487.421842pt;}
.y7f{bottom:488.554801pt;}
.ydf{bottom:495.768132pt;}
.y109{bottom:495.770799pt;}
.y43{bottom:496.074798pt;}
.yb3{bottom:496.452132pt;}
.y132{bottom:496.452798pt;}
.y15e{bottom:496.453465pt;}
.y7b{bottom:498.425464pt;}
.y14{bottom:501.821836pt;}
.yde{bottom:513.368125pt;}
.y108{bottom:513.370792pt;}
.y42{bottom:513.674791pt;}
.yb2{bottom:514.052125pt;}
.y131{bottom:514.052791pt;}
.y15d{bottom:514.053458pt;}
.y13{bottom:516.221830pt;}
.y12{bottom:530.621825pt;}
.ydd{bottom:530.968118pt;}
.y107{bottom:530.970784pt;}
.y41{bottom:531.274784pt;}
.yb1{bottom:531.652118pt;}
.y130{bottom:531.652784pt;}
.y15c{bottom:531.653451pt;}
.y9a{bottom:536.005449pt;}
.y79{bottom:544.795200pt;}
.y11{bottom:545.021819pt;}
.ydc{bottom:548.568111pt;}
.y106{bottom:548.570777pt;}
.y40{bottom:548.874777pt;}
.yb0{bottom:549.252110pt;}
.y12f{bottom:549.252777pt;}
.y15b{bottom:549.253444pt;}
.y99{bottom:550.405443pt;}
.y98{bottom:564.805438pt;}
.ydb{bottom:566.168104pt;}
.y105{bottom:566.170770pt;}
.y3f{bottom:566.474770pt;}
.yaf{bottom:566.852103pt;}
.y12e{bottom:566.852770pt;}
.y15a{bottom:566.853437pt;}
.y7d{bottom:574.270314pt;}
.y97{bottom:579.205432pt;}
.yda{bottom:583.768097pt;}
.y104{bottom:583.770763pt;}
.y3e{bottom:584.074763pt;}
.yae{bottom:584.452096pt;}
.y12d{bottom:584.452763pt;}
.y159{bottom:584.453430pt;}
.y7c{bottom:587.033429pt;}
.y10{bottom:588.221802pt;}
.yd9{bottom:601.368090pt;}
.y103{bottom:601.370756pt;}
.y3d{bottom:601.674756pt;}
.yad{bottom:602.052089pt;}
.y12c{bottom:602.052756pt;}
.y158{bottom:602.053423pt;}
.yf{bottom:606.617421pt;}
.yd8{bottom:618.968083pt;}
.y102{bottom:618.970749pt;}
.y3c{bottom:619.274749pt;}
.yac{bottom:619.652082pt;}
.y12b{bottom:619.652749pt;}
.y157{bottom:619.653416pt;}
.ye{bottom:621.017415pt;}
.yd{bottom:631.421784pt;}
.yd7{bottom:636.568076pt;}
.y101{bottom:636.570742pt;}
.y3b{bottom:636.874742pt;}
.yab{bottom:637.252075pt;}
.y12a{bottom:637.252742pt;}
.y156{bottom:637.253409pt;}
.yc{bottom:649.817404pt;}
.yd6{bottom:654.168069pt;}
.y100{bottom:654.170735pt;}
.y3a{bottom:654.474735pt;}
.yaa{bottom:654.852068pt;}
.y129{bottom:654.852735pt;}
.y155{bottom:654.853402pt;}
.yd5{bottom:671.768061pt;}
.yff{bottom:671.770728pt;}
.y39{bottom:672.074728pt;}
.ya9{bottom:672.452061pt;}
.y128{bottom:672.452728pt;}
.y154{bottom:672.453395pt;}
.y70{bottom:673.258728pt;}
.yb{bottom:679.422058pt;}
.yd4{bottom:689.368054pt;}
.yfe{bottom:689.370721pt;}
.y38{bottom:689.674721pt;}
.ya8{bottom:690.050188pt;}
.y127{bottom:690.050854pt;}
.y153{bottom:690.051521pt;}
.y6f{bottom:698.794717pt;}
.yd3{bottom:706.968047pt;}
.yfd{bottom:706.970714pt;}
.y37{bottom:707.274714pt;}
.ya7{bottom:707.652047pt;}
.y126{bottom:707.652714pt;}
.y152{bottom:707.653380pt;}
.ya{bottom:717.822043pt;}
.y73{bottom:718.758709pt;}
.yd2{bottom:724.568040pt;}
.yfc{bottom:724.570707pt;}
.y36{bottom:724.874707pt;}
.ya6{bottom:725.252040pt;}
.y125{bottom:725.252707pt;}
.y151{bottom:725.253373pt;}
.yd1{bottom:742.168033pt;}
.yfb{bottom:742.170700pt;}
.y35{bottom:742.474700pt;}
.ya5{bottom:742.852033pt;}
.y124{bottom:742.852700pt;}
.y150{bottom:742.853366pt;}
.y9{bottom:759.421360pt;}
.yd0{bottom:759.768026pt;}
.yfa{bottom:759.770693pt;}
.y34{bottom:760.074693pt;}
.ya4{bottom:760.452026pt;}
.y123{bottom:760.452693pt;}
.y14f{bottom:760.453359pt;}
.y71{bottom:764.731200pt;}
.ycf{bottom:777.368019pt;}
.yf9{bottom:777.370686pt;}
.y33{bottom:777.674686pt;}
.ya3{bottom:778.050152pt;}
.y122{bottom:778.050819pt;}
.y14e{bottom:778.051486pt;}
.yce{bottom:794.968012pt;}
.yf8{bottom:794.970679pt;}
.y32{bottom:795.274679pt;}
.y75{bottom:795.393759pt;}
.ya2{bottom:795.652012pt;}
.y121{bottom:795.652679pt;}
.y14d{bottom:795.653345pt;}
.y74{bottom:808.180007pt;}
.ycd{bottom:812.568005pt;}
.yf7{bottom:812.570672pt;}
.y31{bottom:812.874672pt;}
.ya1{bottom:813.252005pt;}
.y14c{bottom:813.252672pt;}
.ycc{bottom:830.167998pt;}
.yf6{bottom:830.170665pt;}
.y30{bottom:830.474665pt;}
.ya0{bottom:830.851998pt;}
.y14b{bottom:830.852665pt;}
.ycb{bottom:847.767991pt;}
.yf5{bottom:847.770658pt;}
.y2f{bottom:848.074658pt;}
.y9f{bottom:848.451991pt;}
.y14a{bottom:848.452657pt;}
.h5{height:21.305058pt;}
.ha{height:25.681483pt;}
.h3{height:26.456320pt;}
.hf{height:26.457440pt;}
.h13{height:30.223800pt;}
.h12{height:31.355886pt;}
.h11{height:34.319986pt;}
.hc{height:34.322272pt;}
.h14{height:34.866089pt;}
.h16{height:34.918507pt;}
.h4{height:37.493318pt;}
.h18{height:38.133318pt;}
.h10{height:41.233984pt;}
.hb{height:41.663983pt;}
.hd{height:41.946650pt;}
.h7{height:41.949444pt;}
.h6{height:43.249983pt;}
.h9{height:43.989876pt;}
.h2{height:46.293315pt;}
.he{height:50.922646pt;}
.h8{height:64.810641pt;}
.h17{height:220.737600pt;}
.h15{height:220.740800pt;}
.h1{height:907.086400pt;}
.h0{height:1122.666667pt;}
.w2{width:64.252480pt;}
.w3{width:221.065600pt;}
.w4{width:221.846400pt;}
.w1{width:642.520000pt;}
.w0{width:793.333333pt;}
.x4{left:-70.615036pt;}
.x0{left:0.000000pt;}
.x14{left:11.991894pt;}
.x19{left:13.196392pt;}
.xf{left:47.055018pt;}
.x2{left:47.999951pt;}
.x20{left:48.945017pt;}
.x24{left:50.078883pt;}
.x21{left:62.343678pt;}
.xd{left:63.771811pt;}
.x23{left:65.197277pt;}
.x1{left:75.380000pt;}
.xb{left:76.346606pt;}
.x15{left:81.361271pt;}
.x1c{left:95.745265pt;}
.x11{left:100.534596pt;}
.x13{left:119.153120pt;}
.x1d{left:120.525255pt;}
.x16{left:122.121254pt;}
.x12{left:123.738587pt;}
.x1a{left:302.834515pt;}
.x1e{left:317.219843pt;}
.x5{left:319.370509pt;}
.x17{left:322.007841pt;}
.x3{left:327.097600pt;}
.x22{left:328.219572pt;}
.x8{left:329.259851pt;}
.x25{left:330.297891pt;}
.x18{left:339.420800pt;}
.x9{left:340.598594pt;}
.x1f{left:341.994500pt;}
.x1b{left:343.614499pt;}
.xe{left:345.032765pt;}
.xc{left:397.206400pt;}
.x27{left:404.865261pt;}
.x26{left:410.820259pt;}
.x6{left:419.653135pt;}
.xa{left:471.079781pt;}
.x10{left:485.898442pt;}
.x7{left:577.074406pt;}
.x28{left:578.267739pt;}
}




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