
    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_ca1998cd4ec6727c6f87e588.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_8f406050bf42ae516e386cb9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_243ee229259aa3147e92268e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_00b58a987398fa9d32a05a69.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_a3d87bc46f30e2432bcc851e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_409e00bb91c7dd25b55bc591.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_b4fdfc76ef70b893be1647ca.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_9f81af7c2c5cf40c0e39a47d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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_2b11ed004c6c8fa5a80f3407.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.372070;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_8123924e0edafb2b458d39f6.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284180;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_ef2813bc65e0951c854c961f.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.098145;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_9ee44bdbca362c0f5c826a62.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,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(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:-68.400000px;}
.v5{vertical-align:-63.360000px;}
.v3{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v4{vertical-align:20.880000px;}
.ls9{letter-spacing:-1.440000px;}
.ls12{letter-spacing:-1.236000px;}
.ls18{letter-spacing:-1.080000px;}
.ls10{letter-spacing:-0.774000px;}
.ls8{letter-spacing:-0.720000px;}
.ls27{letter-spacing:-0.702000px;}
.ls14{letter-spacing:-0.666000px;}
.ls21{letter-spacing:-0.612000px;}
.ls11{letter-spacing:-0.540000px;}
.ls13{letter-spacing:-0.460200px;}
.ls6{letter-spacing:-0.360000px;}
.ls2e{letter-spacing:-0.342000px;}
.ls2c{letter-spacing:-0.216000px;}
.ls20{letter-spacing:-0.206400px;}
.lsc{letter-spacing:-0.108000px;}
.ls7{letter-spacing:-0.053280px;}
.lsd{letter-spacing:-0.004320px;}
.ls5{letter-spacing:0.000000px;}
.ls26{letter-spacing:0.018000px;}
.ls1e{letter-spacing:0.053280px;}
.lse{letter-spacing:0.106800px;}
.ls24{letter-spacing:0.126000px;}
.ls2{letter-spacing:0.180000px;}
.ls1f{letter-spacing:0.259800px;}
.ls4{letter-spacing:0.259920px;}
.lsa{letter-spacing:0.298800px;}
.ls16{letter-spacing:0.311760px;}
.ls0{letter-spacing:0.360000px;}
.ls28{letter-spacing:0.513600px;}
.ls19{letter-spacing:0.666000px;}
.ls15{letter-spacing:0.828000px;}
.ls29{letter-spacing:0.900000px;}
.ls17{letter-spacing:1.080000px;}
.lsb{letter-spacing:1.620000px;}
.ls1a{letter-spacing:4.986720px;}
.ls23{letter-spacing:5.220000px;}
.ls2d{letter-spacing:17.460000px;}
.ls1d{letter-spacing:21.546720px;}
.ls22{letter-spacing:23.706720px;}
.ls1c{letter-spacing:25.866720px;}
.lsf{letter-spacing:40.266720px;}
.ls1{letter-spacing:62.640000px;}
.ls2b{letter-spacing:85.860000px;}
.ls2a{letter-spacing:93.060000px;}
.ls3{letter-spacing:112.500000px;}
.ls25{letter-spacing:225.540000px;}
.ls1b{letter-spacing:384.120000px;}
.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;}
}
.ws10{word-spacing:-59.760000px;}
.ws1a{word-spacing:-54.000000px;}
.ws15{word-spacing:-16.020000px;}
.ws16{word-spacing:-15.606000px;}
.ws5{word-spacing:-15.300000px;}
.ws19{word-spacing:-15.199800px;}
.wsd{word-spacing:-15.046800px;}
.ws17{word-spacing:-14.993280px;}
.wse{word-spacing:-14.940000px;}
.wsf{word-spacing:-14.886720px;}
.ws1d{word-spacing:-14.733600px;}
.ws11{word-spacing:-14.580000px;}
.ws13{word-spacing:-14.479800px;}
.ws14{word-spacing:-14.274000px;}
.ws0{word-spacing:-13.860000px;}
.ws12{word-spacing:-13.704000px;}
.ws1b{word-spacing:-13.680000px;}
.ws18{word-spacing:-13.626000px;}
.ws1{word-spacing:-13.500000px;}
.wsb{word-spacing:-13.392000px;}
.ws1e{word-spacing:-13.284000px;}
.ws1f{word-spacing:-13.158000px;}
.ws2{word-spacing:-13.140000px;}
.ws1c{word-spacing:-12.798000px;}
.ws7{word-spacing:-12.060000px;}
.wsc{word-spacing:-9.715680px;}
.ws6{word-spacing:-7.560000px;}
.ws8{word-spacing:-6.840000px;}
.ws9{word-spacing:-6.120000px;}
.wsa{word-spacing:0.000000px;}
.ws3{word-spacing:52.920000px;}
.ws4{word-spacing:53.151840px;}
._16{margin-left:-4.735440px;}
._9{margin-left:-3.447360px;}
._1{margin-left:-2.376000px;}
._0{margin-left:-1.242000px;}
._2{width:1.029600px;}
._5{width:2.102400px;}
._b{width:3.228480px;}
._3{width:4.374000px;}
._4{width:6.152400px;}
._a{width:7.230240px;}
._8{width:8.589600px;}
._7{width:10.285920px;}
._6{width:11.759760px;}
._c{width:13.393440px;}
._20{width:14.503680px;}
._10{width:15.966720px;}
._13{width:17.899200px;}
._d{width:19.541520px;}
._19{width:20.648160px;}
._17{width:21.738960px;}
._18{width:23.180400px;}
._15{width:24.436800px;}
._14{width:25.443360px;}
._e{width:26.832240px;}
._f{width:28.298880px;}
._11{width:29.489760px;}
._12{width:31.026000px;}
._1b{width:33.286320px;}
._1a{width:34.999440px;}
._2c{width:39.276000px;}
._2f{width:45.044400px;}
._2e{width:46.386000px;}
._26{width:47.844000px;}
._27{width:48.924000px;}
._28{width:50.070000px;}
._24{width:60.210000px;}
._25{width:61.568400px;}
._1c{width:64.166400px;}
._2b{width:68.706000px;}
._2a{width:70.110000px;}
._21{width:71.388000px;}
._22{width:72.572400px;}
._29{width:75.204000px;}
._1d{width:85.392000px;}
._1e{width:86.670000px;}
._2d{width:100.602000px;}
._1f{width:111.924000px;}
._23{width:167.760000px;}
.fc3{color:transparent;}
.fc5{color:rgb(1,2,5);}
.fc4{color:rgb(64,64,64);}
.fc2{color:rgb(42,42,172);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:5.760000px;}
.fs5{font-size:30.240000px;}
.fs8{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.y0{bottom:0.000000px;}
.y7{bottom:0.180000px;}
.y163{bottom:2.160000px;}
.y8e{bottom:2.880000px;}
.y91{bottom:3.060000px;}
.y31{bottom:5.940000px;}
.y4{bottom:6.840000px;}
.ya{bottom:8.820000px;}
.y3{bottom:9.540000px;}
.y90{bottom:10.620000px;}
.y2{bottom:10.800000px;}
.ye7{bottom:12.600000px;}
.yeb{bottom:13.500000px;}
.yea{bottom:16.380000px;}
.yf2{bottom:18.360000px;}
.y8c{bottom:18.540000px;}
.yf7{bottom:18.585000px;}
.ye9{bottom:20.700000px;}
.yf0{bottom:26.280000px;}
.yf5{bottom:26.325000px;}
.yed{bottom:26.460000px;}
.y9{bottom:29.880000px;}
.yec{bottom:30.780000px;}
.yfa{bottom:33.840000px;}
.ye8{bottom:37.800000px;}
.yee{bottom:39.420000px;}
.ye5{bottom:47.520000px;}
.y8{bottom:50.760000px;}
.y6{bottom:51.300000px;}
.yc3{bottom:274.890000px;}
.yd5{bottom:276.510000px;}
.y7e{bottom:282.090000px;}
.y2f{bottom:283.170000px;}
.yaf{bottom:284.250000px;}
.y103{bottom:285.150000px;}
.y60{bottom:285.330000px;}
.ye2{bottom:288.390000px;}
.yc2{bottom:290.550000px;}
.y2e{bottom:292.530000px;}
.yad{bottom:293.250000px;}
.y128{bottom:293.610000px;}
.yd4{bottom:294.870000px;}
.y7d{bottom:299.370000px;}
.yae{bottom:301.530000px;}
.y159{bottom:302.250000px;}
.y102{bottom:302.430000px;}
.y5f{bottom:302.610000px;}
.ye1{bottom:305.490000px;}
.yc1{bottom:306.030000px;}
.y127{bottom:309.090000px;}
.yac{bottom:310.530000px;}
.yd3{bottom:312.150000px;}
.y2d{bottom:315.210000px;}
.y7c{bottom:316.650000px;}
.y158{bottom:317.910000px;}
.yc0{bottom:318.630000px;}
.y8a{bottom:318.810000px;}
.y101{bottom:319.710000px;}
.y5e{bottom:319.890000px;}
.ye0{bottom:322.770000px;}
.y126{bottom:324.750000px;}
.yab{bottom:327.810000px;}
.yd2{bottom:329.430000px;}
.y157{bottom:333.390000px;}
.y2c{bottom:333.570000px;}
.y7b{bottom:333.930000px;}
.y89{bottom:335.910000px;}
.y100{bottom:336.630000px;}
.y5d{bottom:337.170000px;}
.ydf{bottom:340.050000px;}
.y125{bottom:340.230000px;}
.y2b{bottom:343.650000px;}
.yaa{bottom:344.910000px;}
.yd1{bottom:346.710000px;}
.y156{bottom:348.870000px;}
.y7a{bottom:351.210000px;}
.yff{bottom:352.110000px;}
.y88{bottom:353.190000px;}
.y5c{bottom:354.450000px;}
.y124{bottom:355.710000px;}
.yde{bottom:356.970000px;}
.ya9{bottom:362.190000px;}
.yd0{bottom:363.810000px;}
.y155{bottom:364.350000px;}
.y2a{bottom:366.150000px;}
.yfe{bottom:367.590000px;}
.y79{bottom:368.310000px;}
.y87{bottom:370.470000px;}
.y123{bottom:371.190000px;}
.y5b{bottom:371.550000px;}
.ydd{bottom:372.450000px;}
.ya8{bottom:379.470000px;}
.y154{bottom:379.830000px;}
.ycf{bottom:381.090000px;}
.yfd{bottom:383.070000px;}
.y29{bottom:383.430000px;}
.y78{bottom:385.590000px;}
.y122{bottom:386.670000px;}
.y86{bottom:387.750000px;}
.ydc{bottom:388.110000px;}
.y5a{bottom:388.830000px;}
.y153{bottom:395.490000px;}
.yf9{bottom:396.570000px;}
.ya7{bottom:396.750000px;}
.y28{bottom:400.530000px;}
.ydb{bottom:400.710000px;}
.y121{bottom:402.330000px;}
.y77{bottom:402.870000px;}
.y85{bottom:405.030000px;}
.y59{bottom:406.110000px;}
.y152{bottom:410.970000px;}
.yfc{bottom:412.050000px;}
.ya6{bottom:414.030000px;}
.yce{bottom:415.650000px;}
.y27{bottom:417.810000px;}
.y76{bottom:420.150000px;}
.y84{bottom:422.310000px;}
.y58{bottom:423.390000px;}
.y151{bottom:426.450000px;}
.yfb{bottom:427.530000px;}
.ya5{bottom:431.310000px;}
.y120{bottom:433.290000px;}
.y75{bottom:437.430000px;}
.y83{bottom:439.410000px;}
.y57{bottom:440.670000px;}
.y150{bottom:441.930000px;}
.yf4{bottom:443.010000px;}
.ya4{bottom:448.410000px;}
.y11f{bottom:448.770000px;}
.ycd{bottom:450.030000px;}
.y26{bottom:452.370000px;}
.y74{bottom:454.710000px;}
.y82{bottom:456.690000px;}
.y14f{bottom:457.635000px;}
.y56{bottom:457.815000px;}
.yf8{bottom:458.715000px;}
.y11e{bottom:464.475000px;}
.ya3{bottom:465.735000px;}
.ycc{bottom:467.175000px;}
.y73{bottom:471.855000px;}
.y14e{bottom:473.115000px;}
.y81{bottom:474.015000px;}
.yf6{bottom:474.195000px;}
.y55{bottom:475.095000px;}
.y11d{bottom:479.955000px;}
.ycb{bottom:482.655000px;}
.ya2{bottom:483.015000px;}
.y25{bottom:486.795000px;}
.y14d{bottom:488.595000px;}
.y72{bottom:489.135000px;}
.yef{bottom:489.675000px;}
.y80{bottom:491.295000px;}
.y54{bottom:492.375000px;}
.yca{bottom:495.255000px;}
.y11c{bottom:495.435000px;}
.ya1{bottom:500.295000px;}
.y24{bottom:504.075000px;}
.yf3{bottom:505.155000px;}
.y165{bottom:505.875000px;}
.y7f{bottom:508.575000px;}
.y53{bottom:509.655000px;}
.y11b{bottom:510.915000px;}
.ya0{bottom:517.575000px;}
.y14c{bottom:519.735000px;}
.yf1{bottom:520.635000px;}
.y164{bottom:521.355000px;}
.y23{bottom:523.515000px;}
.y71{bottom:523.695000px;}
.y11a{bottom:526.575000px;}
.y52{bottom:526.935000px;}
.y162{bottom:533.955000px;}
.y9f{bottom:534.855000px;}
.y14b{bottom:535.215000px;}
.ye4{bottom:537.015000px;}
.y22{bottom:540.615000px;}
.y119{bottom:542.055000px;}
.y51{bottom:544.215000px;}
.ybf{bottom:549.975000px;}
.y14a{bottom:550.695000px;}
.y9e{bottom:551.955000px;}
.y21{bottom:556.455000px;}
.y118{bottom:557.535000px;}
.y70{bottom:558.075000px;}
.y50{bottom:561.315000px;}
.y149{bottom:566.175000px;}
.y161{bottom:566.715000px;}
.ybe{bottom:566.895000px;}
.y9d{bottom:569.235000px;}
.y117{bottom:573.015000px;}
.y20{bottom:573.375000px;}
.y6f{bottom:575.355000px;}
.y160{bottom:576.975000px;}
.y4f{bottom:578.595000px;}
.y148{bottom:581.835000px;}
.ybd{bottom:582.555000px;}
.y9c{bottom:586.515000px;}
.y116{bottom:588.675000px;}
.y1f{bottom:589.215000px;}
.y6e{bottom:592.635000px;}
.y15f{bottom:593.895000px;}
.y4e{bottom:595.875000px;}
.y147{bottom:597.315000px;}
.ybc{bottom:598.035000px;}
.y9b{bottom:603.795000px;}
.y115{bottom:604.155000px;}
.y1e{bottom:606.135000px;}
.y15e{bottom:609.375000px;}
.y6d{bottom:609.915000px;}
.ybb{bottom:610.635000px;}
.y146{bottom:612.795000px;}
.y4d{bottom:613.155000px;}
.y114{bottom:619.635000px;}
.y9a{bottom:621.075000px;}
.y1d{bottom:621.615000px;}
.y15d{bottom:624.855000px;}
.ye6{bottom:626.115000px;}
.y6c{bottom:627.195000px;}
.y145{bottom:628.275000px;}
.y4c{bottom:630.435000px;}
.y113{bottom:635.115000px;}
.y1c{bottom:637.095000px;}
.y99{bottom:638.175000px;}
.y15c{bottom:640.335000px;}
.y144{bottom:643.935000px;}
.y6b{bottom:644.475000px;}
.y4b{bottom:647.715000px;}
.ye3{bottom:650.775000px;}
.y1b{bottom:652.755000px;}
.yda{bottom:654.555000px;}
.y98{bottom:655.455000px;}
.y15b{bottom:656.175000px;}
.y143{bottom:659.415000px;}
.y6a{bottom:661.575000px;}
.yd9{bottom:664.455000px;}
.y4a{bottom:664.815000px;}
.y112{bottom:666.255000px;}
.y1a{bottom:668.235000px;}
.y15a{bottom:673.455000px;}
.y142{bottom:674.895000px;}
.y69{bottom:678.855000px;}
.yd8{bottom:679.935000px;}
.y111{bottom:681.735000px;}
.y49{bottom:682.095000px;}
.y19{bottom:683.715000px;}
.y97{bottom:690.045000px;}
.y141{bottom:690.405000px;}
.yd7{bottom:695.625000px;}
.y68{bottom:696.165000px;}
.y110{bottom:697.245000px;}
.y18{bottom:699.225000px;}
.y48{bottom:699.405000px;}
.y140{bottom:706.065000px;}
.y96{bottom:706.965000px;}
.yd6{bottom:708.225000px;}
.y10f{bottom:712.905000px;}
.y67{bottom:714.525000px;}
.y17{bottom:714.885000px;}
.y47{bottom:716.685000px;}
.y95{bottom:720.285000px;}
.y13f{bottom:721.545000px;}
.y10e{bottom:728.385000px;}
.y16{bottom:730.365000px;}
.y66{bottom:731.805000px;}
.y46{bottom:733.965000px;}
.y94{bottom:735.765000px;}
.yc9{bottom:736.305000px;}
.y13e{bottom:737.025000px;}
.y15{bottom:745.845000px;}
.yc8{bottom:747.825000px;}
.y65{bottom:749.085000px;}
.y45{bottom:751.065000px;}
.y93{bottom:751.425000px;}
.y13d{bottom:752.505000px;}
.y14{bottom:761.325000px;}
.y10d{bottom:761.505000px;}
.yc7{bottom:765.105000px;}
.y92{bottom:766.905000px;}
.y64{bottom:767.265000px;}
.y13c{bottom:768.165000px;}
.y44{bottom:768.345000px;}
.y13{bottom:776.985000px;}
.y10c{bottom:778.605000px;}
.yc6{bottom:782.205000px;}
.y8b{bottom:783.105000px;}
.y13b{bottom:783.645000px;}
.y63{bottom:784.545000px;}
.y43{bottom:785.625000px;}
.y12{bottom:792.465000px;}
.y10b{bottom:795.885000px;}
.y8f{bottom:798.765000px;}
.y13a{bottom:799.125000px;}
.yc5{bottom:800.745000px;}
.y62{bottom:801.825000px;}
.y42{bottom:802.905000px;}
.y11{bottom:807.945000px;}
.y8d{bottom:814.245000px;}
.y139{bottom:814.605000px;}
.y10a{bottom:814.965000px;}
.y61{bottom:819.105000px;}
.y41{bottom:820.185000px;}
.y138{bottom:830.265000px;}
.y10{bottom:832.425000px;}
.y109{bottom:833.865000px;}
.yc4{bottom:836.205000px;}
.y40{bottom:837.465000px;}
.y137{bottom:845.745000px;}
.y108{bottom:851.325000px;}
.yba{bottom:852.405000px;}
.y3f{bottom:854.565000px;}
.yf{bottom:859.605000px;}
.y136{bottom:861.225000px;}
.yb9{bottom:869.685000px;}
.y3e{bottom:871.845000px;}
.y135{bottom:876.705000px;}
.ye{bottom:876.885000px;}
.y107{bottom:878.865000px;}
.yb8{bottom:886.965000px;}
.y3d{bottom:889.125000px;}
.y134{bottom:892.365000px;}
.y106{bottom:895.785000px;}
.yb7{bottom:904.065000px;}
.y3c{bottom:906.405000px;}
.y133{bottom:907.845000px;}
.y105{bottom:911.265000px;}
.yb6{bottom:921.345000px;}
.yd{bottom:923.190000px;}
.y132{bottom:923.370000px;}
.y3b{bottom:923.730000px;}
.y104{bottom:926.790000px;}
.yb5{bottom:938.670000px;}
.y131{bottom:938.850000px;}
.y3a{bottom:941.010000px;}
.yc{bottom:942.270000px;}
.y130{bottom:954.330000px;}
.yb4{bottom:955.950000px;}
.y39{bottom:958.110000px;}
.y12f{bottom:969.990000px;}
.yb3{bottom:973.230000px;}
.y38{bottom:975.390000px;}
.y12e{bottom:985.470000px;}
.yb2{bottom:990.510000px;}
.y37{bottom:992.670000px;}
.y12d{bottom:1000.950000px;}
.yb1{bottom:1008.870000px;}
.y36{bottom:1009.950000px;}
.y12c{bottom:1016.430000px;}
.yb0{bottom:1026.150000px;}
.y35{bottom:1027.230000px;}
.yb{bottom:1029.930000px;}
.y5{bottom:1031.190000px;}
.y12b{bottom:1032.090000px;}
.y34{bottom:1044.510000px;}
.y12a{bottom:1047.570000px;}
.y33{bottom:1061.610000px;}
.y129{bottom:1063.050000px;}
.y32{bottom:1094.010000px;}
.y1{bottom:1095.090000px;}
.y30{bottom:1096.170000px;}
.hf{height:5.653125px;}
.h6{height:5.805000px;}
.h14{height:15.480000px;}
.h16{height:15.660000px;}
.h1f{height:15.696000px;}
.he{height:21.600000px;}
.h2{height:23.400000px;}
.h1a{height:29.678906px;}
.hc{height:30.476250px;}
.h15{height:30.960000px;}
.h21{height:31.140000px;}
.h19{height:35.332031px;}
.h5{height:38.100586px;}
.h20{height:46.440000px;}
.h13{height:46.620000px;}
.h1e{height:46.656000px;}
.hd{height:47.344922px;}
.hb{height:48.410156px;}
.h22{height:52.971680px;}
.h1c{height:52.998036px;}
.ha{height:52.998047px;}
.h12{height:53.573906px;}
.h3{height:54.421875px;}
.h18{height:58.621992px;}
.h9{height:58.651172px;}
.h10{height:59.038594px;}
.h17{height:59.614102px;}
.h8{height:60.226875px;}
.h11{height:61.423863px;}
.h4{height:63.900000px;}
.h7{height:66.757500px;}
.h1d{height:88.380000px;}
.h1b{height:104.760000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w2{width:22.860000px;}
.wf{width:23.760000px;}
.w21{width:25.740000px;}
.wc{width:27.900000px;}
.w1f{width:44.280000px;}
.w20{width:44.496000px;}
.w1b{width:51.336000px;}
.w16{width:52.020000px;}
.w1c{width:52.740000px;}
.w17{width:56.340000px;}
.w18{width:56.376000px;}
.w19{width:57.780000px;}
.w24{width:59.760000px;}
.w1a{width:62.280000px;}
.w22{width:66.960000px;}
.w25{width:70.560000px;}
.w23{width:72.036000px;}
.w7{width:72.540000px;}
.w3{width:72.900000px;}
.w9{width:73.980000px;}
.w5{width:74.340000px;}
.w27{width:87.660000px;}
.w6{width:87.696000px;}
.w12{width:104.076000px;}
.w14{width:108.396000px;}
.w13{width:108.540000px;}
.w26{width:111.276000px;}
.w10{width:116.136000px;}
.w15{width:120.060000px;}
.w1d{width:181.830000px;}
.w1e{width:224.490000px;}
.w8{width:275.835000px;}
.w4{width:276.555000px;}
.w11{width:336.990000px;}
.w28{width:465.405000px;}
.wd{width:530.025000px;}
.we{width:533.445000px;}
.wb{width:892.979973px;}
.wa{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:2.160000px;}
.x13{left:3.600000px;}
.x4b{left:6.120000px;}
.x19{left:8.100000px;}
.x22{left:9.540000px;}
.xc{left:10.620000px;}
.x25{left:12.240000px;}
.x2b{left:13.320000px;}
.x2d{left:17.280000px;}
.x50{left:18.360000px;}
.x29{left:19.620000px;}
.xa{left:22.860000px;}
.x27{left:25.560000px;}
.x46{left:27.180000px;}
.x48{left:28.980000px;}
.x2a{left:30.420000px;}
.x53{left:31.530000px;}
.x51{left:32.610000px;}
.x52{left:33.690000px;}
.x17{left:35.100000px;}
.x1d{left:36.540000px;}
.x1e{left:38.520000px;}
.x20{left:39.600000px;}
.x2c{left:42.660000px;}
.xe{left:43.740000px;}
.x49{left:44.820000px;}
.x43{left:50.940000px;}
.x4a{left:60.840000px;}
.xd{left:68.760000px;}
.xb{left:70.380000px;}
.x6{left:74.340000px;}
.x54{left:81.180000px;}
.x8{left:87.705000px;}
.x1b{left:123.660000px;}
.x1{left:167.970000px;}
.x3a{left:174.989987px;}
.x15{left:176.445000px;}
.x33{left:187.409987px;}
.x2{left:190.830000px;}
.xf{left:192.089987px;}
.x14{left:195.870000px;}
.x16{left:199.829987px;}
.x18{left:204.869987px;}
.x2f{left:210.449987px;}
.x3f{left:218.729987px;}
.x11{left:225.209987px;}
.x31{left:227.369987px;}
.x3c{left:230.069987px;}
.x4f{left:238.530000px;}
.x30{left:242.489987px;}
.x38{left:253.829987px;}
.x55{left:255.630000px;}
.x4{left:263.730000px;}
.x1a{left:284.115000px;}
.x10{left:330.914987px;}
.x23{left:336.315000px;}
.x37{left:339.014987px;}
.x41{left:347.654987px;}
.x42{left:349.815000px;}
.x3d{left:364.394987px;}
.x34{left:372.134987px;}
.x4c{left:375.555000px;}
.x12{left:384.014987px;}
.x35{left:388.334987px;}
.x1f{left:392.655000px;}
.x2e{left:404.354987px;}
.x4d{left:442.515000px;}
.x24{left:444.675000px;}
.x40{left:446.474987px;}
.x21{left:501.045000px;}
.x4e{left:514.545000px;}
.x5{left:540.285000px;}
.x26{left:558.825000px;}
.x44{left:574.305000px;}
.x7{left:614.625000px;}
.x45{left:618.585000px;}
.x1c{left:621.105000px;}
.x36{left:658.004987px;}
.x47{left:662.910000px;}
.x28{left:672.450000px;}
.x3b{left:682.889987px;}
.x32{left:683.969987px;}
.x39{left:688.469987px;}
.x3e{left:695.129987px;}
.x9{left:702.330000px;}
@media print{
.v2{vertical-align:-60.800000pt;}
.v5{vertical-align:-56.320000pt;}
.v3{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v4{vertical-align:18.560000pt;}
.ls9{letter-spacing:-1.280000pt;}
.ls12{letter-spacing:-1.098667pt;}
.ls18{letter-spacing:-0.960000pt;}
.ls10{letter-spacing:-0.688000pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls27{letter-spacing:-0.624000pt;}
.ls14{letter-spacing:-0.592000pt;}
.ls21{letter-spacing:-0.544000pt;}
.ls11{letter-spacing:-0.480000pt;}
.ls13{letter-spacing:-0.409067pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls2e{letter-spacing:-0.304000pt;}
.ls2c{letter-spacing:-0.192000pt;}
.ls20{letter-spacing:-0.183467pt;}
.lsc{letter-spacing:-0.096000pt;}
.ls7{letter-spacing:-0.047360pt;}
.lsd{letter-spacing:-0.003840pt;}
.ls5{letter-spacing:0.000000pt;}
.ls26{letter-spacing:0.016000pt;}
.ls1e{letter-spacing:0.047360pt;}
.lse{letter-spacing:0.094933pt;}
.ls24{letter-spacing:0.112000pt;}
.ls2{letter-spacing:0.160000pt;}
.ls1f{letter-spacing:0.230933pt;}
.ls4{letter-spacing:0.231040pt;}
.lsa{letter-spacing:0.265600pt;}
.ls16{letter-spacing:0.277120pt;}
.ls0{letter-spacing:0.320000pt;}
.ls28{letter-spacing:0.456533pt;}
.ls19{letter-spacing:0.592000pt;}
.ls15{letter-spacing:0.736000pt;}
.ls29{letter-spacing:0.800000pt;}
.ls17{letter-spacing:0.960000pt;}
.lsb{letter-spacing:1.440000pt;}
.ls1a{letter-spacing:4.432640pt;}
.ls23{letter-spacing:4.640000pt;}
.ls2d{letter-spacing:15.520000pt;}
.ls1d{letter-spacing:19.152640pt;}
.ls22{letter-spacing:21.072640pt;}
.ls1c{letter-spacing:22.992640pt;}
.lsf{letter-spacing:35.792640pt;}
.ls1{letter-spacing:55.680000pt;}
.ls2b{letter-spacing:76.320000pt;}
.ls2a{letter-spacing:82.720000pt;}
.ls3{letter-spacing:100.000000pt;}
.ls25{letter-spacing:200.480000pt;}
.ls1b{letter-spacing:341.440000pt;}
.ws10{word-spacing:-53.120000pt;}
.ws1a{word-spacing:-48.000000pt;}
.ws15{word-spacing:-14.240000pt;}
.ws16{word-spacing:-13.872000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws19{word-spacing:-13.510933pt;}
.wsd{word-spacing:-13.374933pt;}
.ws17{word-spacing:-13.327360pt;}
.wse{word-spacing:-13.280000pt;}
.wsf{word-spacing:-13.232640pt;}
.ws1d{word-spacing:-13.096533pt;}
.ws11{word-spacing:-12.960000pt;}
.ws13{word-spacing:-12.870933pt;}
.ws14{word-spacing:-12.688000pt;}
.ws0{word-spacing:-12.320000pt;}
.ws12{word-spacing:-12.181333pt;}
.ws1b{word-spacing:-12.160000pt;}
.ws18{word-spacing:-12.112000pt;}
.ws1{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.904000pt;}
.ws1e{word-spacing:-11.808000pt;}
.ws1f{word-spacing:-11.696000pt;}
.ws2{word-spacing:-11.680000pt;}
.ws1c{word-spacing:-11.376000pt;}
.ws7{word-spacing:-10.720000pt;}
.wsc{word-spacing:-8.636160pt;}
.ws6{word-spacing:-6.720000pt;}
.ws8{word-spacing:-6.080000pt;}
.ws9{word-spacing:-5.440000pt;}
.wsa{word-spacing:0.000000pt;}
.ws3{word-spacing:47.040000pt;}
.ws4{word-spacing:47.246080pt;}
._16{margin-left:-4.209280pt;}
._9{margin-left:-3.064320pt;}
._1{margin-left:-2.112000pt;}
._0{margin-left:-1.104000pt;}
._2{width:0.915200pt;}
._5{width:1.868800pt;}
._b{width:2.869760pt;}
._3{width:3.888000pt;}
._4{width:5.468800pt;}
._a{width:6.426880pt;}
._8{width:7.635200pt;}
._7{width:9.143040pt;}
._6{width:10.453120pt;}
._c{width:11.905280pt;}
._20{width:12.892160pt;}
._10{width:14.192640pt;}
._13{width:15.910400pt;}
._d{width:17.370240pt;}
._19{width:18.353920pt;}
._17{width:19.323520pt;}
._18{width:20.604800pt;}
._15{width:21.721600pt;}
._14{width:22.616320pt;}
._e{width:23.850880pt;}
._f{width:25.154560pt;}
._11{width:26.213120pt;}
._12{width:27.578667pt;}
._1b{width:29.587840pt;}
._1a{width:31.110613pt;}
._2c{width:34.912000pt;}
._2f{width:40.039467pt;}
._2e{width:41.232000pt;}
._26{width:42.528000pt;}
._27{width:43.488000pt;}
._28{width:44.506667pt;}
._24{width:53.520000pt;}
._25{width:54.727467pt;}
._1c{width:57.036800pt;}
._2b{width:61.072000pt;}
._2a{width:62.320000pt;}
._21{width:63.456000pt;}
._22{width:64.508800pt;}
._29{width:66.848000pt;}
._1d{width:75.904000pt;}
._1e{width:77.040000pt;}
._2d{width:89.424000pt;}
._1f{width:99.488000pt;}
._23{width:149.120000pt;}
.fs1{font-size:5.120000pt;}
.fs5{font-size:26.880000pt;}
.fs8{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:0.160000pt;}
.y163{bottom:1.920000pt;}
.y8e{bottom:2.560000pt;}
.y91{bottom:2.720000pt;}
.y31{bottom:5.280000pt;}
.y4{bottom:6.080000pt;}
.ya{bottom:7.840000pt;}
.y3{bottom:8.480000pt;}
.y90{bottom:9.440000pt;}
.y2{bottom:9.600000pt;}
.ye7{bottom:11.200000pt;}
.yeb{bottom:12.000000pt;}
.yea{bottom:14.560000pt;}
.yf2{bottom:16.320000pt;}
.y8c{bottom:16.480000pt;}
.yf7{bottom:16.520000pt;}
.ye9{bottom:18.400000pt;}
.yf0{bottom:23.360000pt;}
.yf5{bottom:23.400000pt;}
.yed{bottom:23.520000pt;}
.y9{bottom:26.560000pt;}
.yec{bottom:27.360000pt;}
.yfa{bottom:30.080000pt;}
.ye8{bottom:33.600000pt;}
.yee{bottom:35.040000pt;}
.ye5{bottom:42.240000pt;}
.y8{bottom:45.120000pt;}
.y6{bottom:45.600000pt;}
.yc3{bottom:244.346667pt;}
.yd5{bottom:245.786667pt;}
.y7e{bottom:250.746667pt;}
.y2f{bottom:251.706667pt;}
.yaf{bottom:252.666667pt;}
.y103{bottom:253.466667pt;}
.y60{bottom:253.626667pt;}
.ye2{bottom:256.346667pt;}
.yc2{bottom:258.266667pt;}
.y2e{bottom:260.026667pt;}
.yad{bottom:260.666667pt;}
.y128{bottom:260.986667pt;}
.yd4{bottom:262.106667pt;}
.y7d{bottom:266.106667pt;}
.yae{bottom:268.026667pt;}
.y159{bottom:268.666667pt;}
.y102{bottom:268.826667pt;}
.y5f{bottom:268.986667pt;}
.ye1{bottom:271.546667pt;}
.yc1{bottom:272.026667pt;}
.y127{bottom:274.746667pt;}
.yac{bottom:276.026667pt;}
.yd3{bottom:277.466667pt;}
.y2d{bottom:280.186667pt;}
.y7c{bottom:281.466667pt;}
.y158{bottom:282.586667pt;}
.yc0{bottom:283.226667pt;}
.y8a{bottom:283.386667pt;}
.y101{bottom:284.186667pt;}
.y5e{bottom:284.346667pt;}
.ye0{bottom:286.906667pt;}
.y126{bottom:288.666667pt;}
.yab{bottom:291.386667pt;}
.yd2{bottom:292.826667pt;}
.y157{bottom:296.346667pt;}
.y2c{bottom:296.506667pt;}
.y7b{bottom:296.826667pt;}
.y89{bottom:298.586667pt;}
.y100{bottom:299.226667pt;}
.y5d{bottom:299.706667pt;}
.ydf{bottom:302.266667pt;}
.y125{bottom:302.426667pt;}
.y2b{bottom:305.466667pt;}
.yaa{bottom:306.586667pt;}
.yd1{bottom:308.186667pt;}
.y156{bottom:310.106667pt;}
.y7a{bottom:312.186667pt;}
.yff{bottom:312.986667pt;}
.y88{bottom:313.946667pt;}
.y5c{bottom:315.066667pt;}
.y124{bottom:316.186667pt;}
.yde{bottom:317.306667pt;}
.ya9{bottom:321.946667pt;}
.yd0{bottom:323.386667pt;}
.y155{bottom:323.866667pt;}
.y2a{bottom:325.466667pt;}
.yfe{bottom:326.746667pt;}
.y79{bottom:327.386667pt;}
.y87{bottom:329.306667pt;}
.y123{bottom:329.946667pt;}
.y5b{bottom:330.266667pt;}
.ydd{bottom:331.066667pt;}
.ya8{bottom:337.306667pt;}
.y154{bottom:337.626667pt;}
.ycf{bottom:338.746667pt;}
.yfd{bottom:340.506667pt;}
.y29{bottom:340.826667pt;}
.y78{bottom:342.746667pt;}
.y122{bottom:343.706667pt;}
.y86{bottom:344.666667pt;}
.ydc{bottom:344.986667pt;}
.y5a{bottom:345.626667pt;}
.y153{bottom:351.546667pt;}
.yf9{bottom:352.506667pt;}
.ya7{bottom:352.666667pt;}
.y28{bottom:356.026667pt;}
.ydb{bottom:356.186667pt;}
.y121{bottom:357.626667pt;}
.y77{bottom:358.106667pt;}
.y85{bottom:360.026667pt;}
.y59{bottom:360.986667pt;}
.y152{bottom:365.306667pt;}
.yfc{bottom:366.266667pt;}
.ya6{bottom:368.026667pt;}
.yce{bottom:369.466667pt;}
.y27{bottom:371.386667pt;}
.y76{bottom:373.466667pt;}
.y84{bottom:375.386667pt;}
.y58{bottom:376.346667pt;}
.y151{bottom:379.066667pt;}
.yfb{bottom:380.026667pt;}
.ya5{bottom:383.386667pt;}
.y120{bottom:385.146667pt;}
.y75{bottom:388.826667pt;}
.y83{bottom:390.586667pt;}
.y57{bottom:391.706667pt;}
.y150{bottom:392.826667pt;}
.yf4{bottom:393.786667pt;}
.ya4{bottom:398.586667pt;}
.y11f{bottom:398.906667pt;}
.ycd{bottom:400.026667pt;}
.y26{bottom:402.106667pt;}
.y74{bottom:404.186667pt;}
.y82{bottom:405.946667pt;}
.y14f{bottom:406.786667pt;}
.y56{bottom:406.946667pt;}
.yf8{bottom:407.746667pt;}
.y11e{bottom:412.866667pt;}
.ya3{bottom:413.986667pt;}
.ycc{bottom:415.266667pt;}
.y73{bottom:419.426667pt;}
.y14e{bottom:420.546667pt;}
.y81{bottom:421.346667pt;}
.yf6{bottom:421.506667pt;}
.y55{bottom:422.306667pt;}
.y11d{bottom:426.626667pt;}
.ycb{bottom:429.026667pt;}
.ya2{bottom:429.346667pt;}
.y25{bottom:432.706667pt;}
.y14d{bottom:434.306667pt;}
.y72{bottom:434.786667pt;}
.yef{bottom:435.266667pt;}
.y80{bottom:436.706667pt;}
.y54{bottom:437.666667pt;}
.yca{bottom:440.226667pt;}
.y11c{bottom:440.386667pt;}
.ya1{bottom:444.706667pt;}
.y24{bottom:448.066667pt;}
.yf3{bottom:449.026667pt;}
.y165{bottom:449.666667pt;}
.y7f{bottom:452.066667pt;}
.y53{bottom:453.026667pt;}
.y11b{bottom:454.146667pt;}
.ya0{bottom:460.066667pt;}
.y14c{bottom:461.986667pt;}
.yf1{bottom:462.786667pt;}
.y164{bottom:463.426667pt;}
.y23{bottom:465.346667pt;}
.y71{bottom:465.506667pt;}
.y11a{bottom:468.066667pt;}
.y52{bottom:468.386667pt;}
.y162{bottom:474.626667pt;}
.y9f{bottom:475.426667pt;}
.y14b{bottom:475.746667pt;}
.ye4{bottom:477.346667pt;}
.y22{bottom:480.546667pt;}
.y119{bottom:481.826667pt;}
.y51{bottom:483.746667pt;}
.ybf{bottom:488.866667pt;}
.y14a{bottom:489.506667pt;}
.y9e{bottom:490.626667pt;}
.y21{bottom:494.626667pt;}
.y118{bottom:495.586667pt;}
.y70{bottom:496.066667pt;}
.y50{bottom:498.946667pt;}
.y149{bottom:503.266667pt;}
.y161{bottom:503.746667pt;}
.ybe{bottom:503.906667pt;}
.y9d{bottom:505.986667pt;}
.y117{bottom:509.346667pt;}
.y20{bottom:509.666667pt;}
.y6f{bottom:511.426667pt;}
.y160{bottom:512.866667pt;}
.y4f{bottom:514.306667pt;}
.y148{bottom:517.186667pt;}
.ybd{bottom:517.826667pt;}
.y9c{bottom:521.346667pt;}
.y116{bottom:523.266667pt;}
.y1f{bottom:523.746667pt;}
.y6e{bottom:526.786667pt;}
.y15f{bottom:527.906667pt;}
.y4e{bottom:529.666667pt;}
.y147{bottom:530.946667pt;}
.ybc{bottom:531.586667pt;}
.y9b{bottom:536.706667pt;}
.y115{bottom:537.026667pt;}
.y1e{bottom:538.786667pt;}
.y15e{bottom:541.666667pt;}
.y6d{bottom:542.146667pt;}
.ybb{bottom:542.786667pt;}
.y146{bottom:544.706667pt;}
.y4d{bottom:545.026667pt;}
.y114{bottom:550.786667pt;}
.y9a{bottom:552.066667pt;}
.y1d{bottom:552.546667pt;}
.y15d{bottom:555.426667pt;}
.ye6{bottom:556.546667pt;}
.y6c{bottom:557.506667pt;}
.y145{bottom:558.466667pt;}
.y4c{bottom:560.386667pt;}
.y113{bottom:564.546667pt;}
.y1c{bottom:566.306667pt;}
.y99{bottom:567.266667pt;}
.y15c{bottom:569.186667pt;}
.y144{bottom:572.386667pt;}
.y6b{bottom:572.866667pt;}
.y4b{bottom:575.746667pt;}
.ye3{bottom:578.466667pt;}
.y1b{bottom:580.226667pt;}
.yda{bottom:581.826667pt;}
.y98{bottom:582.626667pt;}
.y15b{bottom:583.266667pt;}
.y143{bottom:586.146667pt;}
.y6a{bottom:588.066667pt;}
.yd9{bottom:590.626667pt;}
.y4a{bottom:590.946667pt;}
.y112{bottom:592.226667pt;}
.y1a{bottom:593.986667pt;}
.y15a{bottom:598.626667pt;}
.y142{bottom:599.906667pt;}
.y69{bottom:603.426667pt;}
.yd8{bottom:604.386667pt;}
.y111{bottom:605.986667pt;}
.y49{bottom:606.306667pt;}
.y19{bottom:607.746667pt;}
.y97{bottom:613.373333pt;}
.y141{bottom:613.693333pt;}
.yd7{bottom:618.333333pt;}
.y68{bottom:618.813333pt;}
.y110{bottom:619.773333pt;}
.y18{bottom:621.533333pt;}
.y48{bottom:621.693333pt;}
.y140{bottom:627.613333pt;}
.y96{bottom:628.413333pt;}
.yd6{bottom:629.533333pt;}
.y10f{bottom:633.693333pt;}
.y67{bottom:635.133333pt;}
.y17{bottom:635.453333pt;}
.y47{bottom:637.053333pt;}
.y95{bottom:640.253333pt;}
.y13f{bottom:641.373333pt;}
.y10e{bottom:647.453333pt;}
.y16{bottom:649.213333pt;}
.y66{bottom:650.493333pt;}
.y46{bottom:652.413333pt;}
.y94{bottom:654.013333pt;}
.yc9{bottom:654.493333pt;}
.y13e{bottom:655.133333pt;}
.y15{bottom:662.973333pt;}
.yc8{bottom:664.733333pt;}
.y65{bottom:665.853333pt;}
.y45{bottom:667.613333pt;}
.y93{bottom:667.933333pt;}
.y13d{bottom:668.893333pt;}
.y14{bottom:676.733333pt;}
.y10d{bottom:676.893333pt;}
.yc7{bottom:680.093333pt;}
.y92{bottom:681.693333pt;}
.y64{bottom:682.013333pt;}
.y13c{bottom:682.813333pt;}
.y44{bottom:682.973333pt;}
.y13{bottom:690.653333pt;}
.y10c{bottom:692.093333pt;}
.yc6{bottom:695.293333pt;}
.y8b{bottom:696.093333pt;}
.y13b{bottom:696.573333pt;}
.y63{bottom:697.373333pt;}
.y43{bottom:698.333333pt;}
.y12{bottom:704.413333pt;}
.y10b{bottom:707.453333pt;}
.y8f{bottom:710.013333pt;}
.y13a{bottom:710.333333pt;}
.yc5{bottom:711.773333pt;}
.y62{bottom:712.733333pt;}
.y42{bottom:713.693333pt;}
.y11{bottom:718.173333pt;}
.y8d{bottom:723.773333pt;}
.y139{bottom:724.093333pt;}
.y10a{bottom:724.413333pt;}
.y61{bottom:728.093333pt;}
.y41{bottom:729.053333pt;}
.y138{bottom:738.013333pt;}
.y10{bottom:739.933333pt;}
.y109{bottom:741.213333pt;}
.yc4{bottom:743.293333pt;}
.y40{bottom:744.413333pt;}
.y137{bottom:751.773333pt;}
.y108{bottom:756.733333pt;}
.yba{bottom:757.693333pt;}
.y3f{bottom:759.613333pt;}
.yf{bottom:764.093333pt;}
.y136{bottom:765.533333pt;}
.yb9{bottom:773.053333pt;}
.y3e{bottom:774.973333pt;}
.y135{bottom:779.293333pt;}
.ye{bottom:779.453333pt;}
.y107{bottom:781.213333pt;}
.yb8{bottom:788.413333pt;}
.y3d{bottom:790.333333pt;}
.y134{bottom:793.213333pt;}
.y106{bottom:796.253333pt;}
.yb7{bottom:803.613333pt;}
.y3c{bottom:805.693333pt;}
.y133{bottom:806.973333pt;}
.y105{bottom:810.013333pt;}
.yb6{bottom:818.973333pt;}
.yd{bottom:820.613333pt;}
.y132{bottom:820.773333pt;}
.y3b{bottom:821.093333pt;}
.y104{bottom:823.813333pt;}
.yb5{bottom:834.373333pt;}
.y131{bottom:834.533333pt;}
.y3a{bottom:836.453333pt;}
.yc{bottom:837.573333pt;}
.y130{bottom:848.293333pt;}
.yb4{bottom:849.733333pt;}
.y39{bottom:851.653333pt;}
.y12f{bottom:862.213333pt;}
.yb3{bottom:865.093333pt;}
.y38{bottom:867.013333pt;}
.y12e{bottom:875.973333pt;}
.yb2{bottom:880.453333pt;}
.y37{bottom:882.373333pt;}
.y12d{bottom:889.733333pt;}
.yb1{bottom:896.773333pt;}
.y36{bottom:897.733333pt;}
.y12c{bottom:903.493333pt;}
.yb0{bottom:912.133333pt;}
.y35{bottom:913.093333pt;}
.yb{bottom:915.493333pt;}
.y5{bottom:916.613333pt;}
.y12b{bottom:917.413333pt;}
.y34{bottom:928.453333pt;}
.y12a{bottom:931.173333pt;}
.y33{bottom:943.653333pt;}
.y129{bottom:944.933333pt;}
.y32{bottom:972.453333pt;}
.y1{bottom:973.413333pt;}
.y30{bottom:974.373333pt;}
.hf{height:5.025000pt;}
.h6{height:5.160000pt;}
.h14{height:13.760000pt;}
.h16{height:13.920000pt;}
.h1f{height:13.952000pt;}
.he{height:19.200000pt;}
.h2{height:20.800000pt;}
.h1a{height:26.381250pt;}
.hc{height:27.090000pt;}
.h15{height:27.520000pt;}
.h21{height:27.680000pt;}
.h19{height:31.406250pt;}
.h5{height:33.867188pt;}
.h20{height:41.280000pt;}
.h13{height:41.440000pt;}
.h1e{height:41.472000pt;}
.hd{height:42.084375pt;}
.hb{height:43.031250pt;}
.h22{height:47.085938pt;}
.h1c{height:47.109365pt;}
.ha{height:47.109375pt;}
.h12{height:47.621250pt;}
.h3{height:48.375000pt;}
.h18{height:52.108438pt;}
.h9{height:52.134375pt;}
.h10{height:52.478750pt;}
.h17{height:52.990313pt;}
.h8{height:53.535000pt;}
.h11{height:54.598989pt;}
.h4{height:56.800000pt;}
.h7{height:59.340000pt;}
.h1d{height:78.560000pt;}
.h1b{height:93.120000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w2{width:20.320000pt;}
.wf{width:21.120000pt;}
.w21{width:22.880000pt;}
.wc{width:24.800000pt;}
.w1f{width:39.360000pt;}
.w20{width:39.552000pt;}
.w1b{width:45.632000pt;}
.w16{width:46.240000pt;}
.w1c{width:46.880000pt;}
.w17{width:50.080000pt;}
.w18{width:50.112000pt;}
.w19{width:51.360000pt;}
.w24{width:53.120000pt;}
.w1a{width:55.360000pt;}
.w22{width:59.520000pt;}
.w25{width:62.720000pt;}
.w23{width:64.032000pt;}
.w7{width:64.480000pt;}
.w3{width:64.800000pt;}
.w9{width:65.760000pt;}
.w5{width:66.080000pt;}
.w27{width:77.920000pt;}
.w6{width:77.952000pt;}
.w12{width:92.512000pt;}
.w14{width:96.352000pt;}
.w13{width:96.480000pt;}
.w26{width:98.912000pt;}
.w10{width:103.232000pt;}
.w15{width:106.720000pt;}
.w1d{width:161.626667pt;}
.w1e{width:199.546667pt;}
.w8{width:245.186667pt;}
.w4{width:245.826667pt;}
.w11{width:299.546667pt;}
.w28{width:413.693333pt;}
.wd{width:471.133333pt;}
.we{width:474.173333pt;}
.wb{width:793.759976pt;}
.wa{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:1.920000pt;}
.x13{left:3.200000pt;}
.x4b{left:5.440000pt;}
.x19{left:7.200000pt;}
.x22{left:8.480000pt;}
.xc{left:9.440000pt;}
.x25{left:10.880000pt;}
.x2b{left:11.840000pt;}
.x2d{left:15.360000pt;}
.x50{left:16.320000pt;}
.x29{left:17.440000pt;}
.xa{left:20.320000pt;}
.x27{left:22.720000pt;}
.x46{left:24.160000pt;}
.x48{left:25.760000pt;}
.x2a{left:27.040000pt;}
.x53{left:28.026667pt;}
.x51{left:28.986667pt;}
.x52{left:29.946667pt;}
.x17{left:31.200000pt;}
.x1d{left:32.480000pt;}
.x1e{left:34.240000pt;}
.x20{left:35.200000pt;}
.x2c{left:37.920000pt;}
.xe{left:38.880000pt;}
.x49{left:39.840000pt;}
.x43{left:45.280000pt;}
.x4a{left:54.080000pt;}
.xd{left:61.120000pt;}
.xb{left:62.560000pt;}
.x6{left:66.080000pt;}
.x54{left:72.160000pt;}
.x8{left:77.960000pt;}
.x1b{left:109.920000pt;}
.x1{left:149.306667pt;}
.x3a{left:155.546655pt;}
.x15{left:156.840000pt;}
.x33{left:166.586655pt;}
.x2{left:169.626667pt;}
.xf{left:170.746655pt;}
.x14{left:174.106667pt;}
.x16{left:177.626655pt;}
.x18{left:182.106655pt;}
.x2f{left:187.066655pt;}
.x3f{left:194.426655pt;}
.x11{left:200.186655pt;}
.x31{left:202.106655pt;}
.x3c{left:204.506655pt;}
.x4f{left:212.026667pt;}
.x30{left:215.546655pt;}
.x38{left:225.626655pt;}
.x55{left:227.226667pt;}
.x4{left:234.426667pt;}
.x1a{left:252.546667pt;}
.x10{left:294.146655pt;}
.x23{left:298.946667pt;}
.x37{left:301.346655pt;}
.x41{left:309.026655pt;}
.x42{left:310.946667pt;}
.x3d{left:323.906655pt;}
.x34{left:330.786655pt;}
.x4c{left:333.826667pt;}
.x12{left:341.346655pt;}
.x35{left:345.186655pt;}
.x1f{left:349.026667pt;}
.x2e{left:359.426655pt;}
.x4d{left:393.346667pt;}
.x24{left:395.266667pt;}
.x40{left:396.866655pt;}
.x21{left:445.373333pt;}
.x4e{left:457.373333pt;}
.x5{left:480.253333pt;}
.x26{left:496.733333pt;}
.x44{left:510.493333pt;}
.x7{left:546.333333pt;}
.x45{left:549.853333pt;}
.x1c{left:552.093333pt;}
.x36{left:584.893322pt;}
.x47{left:589.253333pt;}
.x28{left:597.733333pt;}
.x3b{left:607.013322pt;}
.x32{left:607.973322pt;}
.x39{left:611.973322pt;}
.x3e{left:617.893322pt;}
.x9{left:624.293333pt;}
}




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