
    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_c5da53b45acb0152b23b56f1.woff')format("woff");}.ff1{font-family:ff1;line-height:0.948242;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_16fdf64b2c6934d477c7defa.woff')format("woff");}.ff2{font-family:ff2;line-height:1.083008;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_7348d87ea609e51255bc6b58.woff')format("woff");}.ff3{font-family:ff3;line-height:0.911621;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_8bfa74887b670cffde9c68dc.woff')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_64374c9242fee747c37ff195.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_fe3689774dff1a9ae69648a7.woff')format("woff");}.ff6{font-family:ff6;line-height:0.893066;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_306b8b7af2d2dc7b502f80db.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_63023f855d9d064059a28a6a.woff')format("woff");}.ff8{font-family:ff8;line-height:0.893555;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_58f3d33260710723d04ffbea.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_f80e5fc31d1e7ec7dec32b31.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_626dd05bcace5f87333fe959.woff')format("woff");}.ffb{font-family:ffb;line-height:0.910645;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_790dc92e55f84af788389123.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_f0444273ccc9528f4bf7014f.woff')format("woff");}.ffd{font-family:ffd;line-height:0.793945;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_07358cf05fcd60b165ffde24.woff')format("woff");}.ffe{font-family:ffe;line-height:0.921875;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_aa6583535bbbe18f0800048c.woff')format("woff");}.fff{font-family:fff;line-height:1.432129;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_906ee5bc4fec45bbfd327e23.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_3adbd372290dbde7a4a87897.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_55a3dbac4bf7aff83354db38.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_fde45d5acddba21ee076628d.woff')format("woff");}.ff13{font-family:ff13;line-height:1.432129;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);}
.v0{vertical-align:0.000000px;}
.ls18{letter-spacing:-1.080000px;}
.ls21{letter-spacing:-0.924000px;}
.ls10{letter-spacing:-0.612000px;}
.ls6{letter-spacing:-0.540000px;}
.ls11{letter-spacing:-0.460200px;}
.ls9{letter-spacing:-0.360000px;}
.ls25{letter-spacing:-0.269400px;}
.ls20{letter-spacing:-0.259800px;}
.ls16{letter-spacing:-0.053400px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.014400px;}
.lsf{letter-spacing:0.053280px;}
.ls5{letter-spacing:0.053400px;}
.ls1d{letter-spacing:0.073440px;}
.ls4{letter-spacing:0.106560px;}
.ls19{letter-spacing:0.106800px;}
.ls7{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.197280px;}
.ls17{letter-spacing:0.206400px;}
.ls8{letter-spacing:0.259800px;}
.ls3{letter-spacing:0.259920px;}
.ls1c{letter-spacing:0.306720px;}
.ls1{letter-spacing:0.360000px;}
.ls12{letter-spacing:8.586720px;}
.ls15{letter-spacing:9.306720px;}
.lse{letter-spacing:10.746720px;}
.ls24{letter-spacing:12.509280px;}
.ls23{letter-spacing:12.653280px;}
.ls1f{letter-spacing:14.669280px;}
.ls22{letter-spacing:14.813280px;}
.ls1a{letter-spacing:15.066720px;}
.ls14{letter-spacing:17.946720px;}
.ls1b{letter-spacing:19.386720px;}
.lsc{letter-spacing:20.826720px;}
.lsd{letter-spacing:26.820000px;}
.ls2{letter-spacing:30.186720px;}
.ls1e{letter-spacing:36.269280px;}
.lsb{letter-spacing:42.426720px;}
.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;}
}
.ws9{word-spacing:-54.000000px;}
.ws6{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.199800px;}
.ws10{word-spacing:-15.146400px;}
.ws11{word-spacing:-15.046800px;}
.ws5{word-spacing:-14.993400px;}
.ws7{word-spacing:-14.940000px;}
.wsf{word-spacing:-14.886600px;}
.ws12{word-spacing:-14.680200px;}
.wsc{word-spacing:-14.580000px;}
.wse{word-spacing:-14.479800px;}
.wsd{word-spacing:-14.328000px;}
.ws13{word-spacing:-14.016000px;}
.ws8{word-spacing:-13.500000px;}
.wsb{word-spacing:-12.060000px;}
.ws14{word-spacing:-11.790600px;}
.ws3{word-spacing:-8.040130px;}
.ws2{word-spacing:-7.341242px;}
.ws0{word-spacing:-7.236117px;}
.ws1{word-spacing:-6.432104px;}
.ws4{word-spacing:0.000000px;}
._4{margin-left:-71.818800px;}
._23{margin-left:-4.746289px;}
._c{margin-left:-3.405553px;}
._1c{margin-left:-2.401130px;}
._0{margin-left:-1.349112px;}
._1{width:1.328640px;}
._8{width:3.185112px;}
._7{width:4.752000px;}
._b{width:6.006000px;}
._25{width:7.048490px;}
._11{width:8.064000px;}
._5{width:9.504000px;}
._13{width:10.875924px;}
._6{width:12.042000px;}
._14{width:13.081055px;}
._12{width:14.556000px;}
._1f{width:16.648731px;}
._a{width:17.874000px;}
._9{width:19.602000px;}
._19{width:20.616695px;}
._26{width:21.857726px;}
._18{width:22.966955px;}
._17{width:24.166620px;}
._1a{width:25.433280px;}
._1b{width:26.711424px;}
._22{width:28.135776px;}
._24{width:29.362248px;}
._10{width:30.414000px;}
._f{width:31.824000px;}
._15{width:33.773424px;}
._16{width:34.780248px;}
._21{width:36.270788px;}
._20{width:37.659530px;}
._e{width:39.146472px;}
._d{width:40.284000px;}
._1e{width:47.065452px;}
._1d{width:48.465770px;}
._2{width:55.516800px;}
._3{width:72.618720px;}
.fc6{color:rgb(255,0,0);}
.fc5{color:rgb(5,99,193);}
.fc1{color:rgb(56,116,161);}
.fc7{color:rgb(180,180,180);}
.fc4{color:rgb(85,85,85);}
.fc3{color:rgb(51,51,51);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:24.000000px;}
.fs3{font-size:27.908791px;}
.fs4{font-size:31.895761px;}
.fs0{font-size:35.882732px;}
.fs2{font-size:39.869702px;}
.fsc{font-size:42.000000px;}
.fs5{font-size:47.843642px;}
.fsb{font-size:48.000000px;}
.fs6{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fsa{font-size:60.000000px;}
.fs1{font-size:79.739403px;}
.fs7{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.879565px;}
.yd5{bottom:2.913000px;}
.ya{bottom:3.986970px;}
.yc{bottom:3.986973px;}
.y10{bottom:3.986994px;}
.y12{bottom:3.986998px;}
.y1b7{bottom:7.500000px;}
.y118{bottom:18.465000px;}
.y16{bottom:24.918630px;}
.y75{bottom:32.862000px;}
.yd4{bottom:39.156390px;}
.y72{bottom:42.069450px;}
.y15{bottom:47.843708px;}
.y17{bottom:56.376000px;}
.y74{bottom:90.000000px;}
.y178{bottom:111.996000px;}
.y145{bottom:114.336000px;}
.yad{bottom:116.136000px;}
.yf0{bottom:120.096000px;}
.y54{bottom:121.176000px;}
.y116{bottom:124.416000px;}
.y177{bottom:125.496000px;}
.yd2{bottom:126.756000px;}
.y144{bottom:130.716000px;}
.yac{bottom:132.516000px;}
.y71{bottom:134.496000px;}
.yef{bottom:136.476000px;}
.y53{bottom:137.556000px;}
.y176{bottom:138.996000px;}
.y115{bottom:140.796000px;}
.yd1{bottom:143.136000px;}
.y143{bottom:147.096000px;}
.yab{bottom:148.896000px;}
.y70{bottom:150.870000px;}
.y175{bottom:152.490000px;}
.yee{bottom:152.850000px;}
.y52{bottom:153.930000px;}
.y114{bottom:157.170000px;}
.yd0{bottom:159.510000px;}
.y142{bottom:163.470000px;}
.yaa{bottom:165.270000px;}
.y6f{bottom:167.250000px;}
.yed{bottom:169.230000px;}
.y174{bottom:169.770000px;}
.y51{bottom:170.310000px;}
.y113{bottom:173.550000px;}
.ycf{bottom:175.890000px;}
.y141{bottom:179.850000px;}
.y173{bottom:183.270000px;}
.y6e{bottom:183.630000px;}
.y50{bottom:186.690000px;}
.yec{bottom:190.290000px;}
.y112{bottom:190.470000px;}
.ya9{bottom:190.830000px;}
.yce{bottom:192.270000px;}
.y6d{bottom:200.010000px;}
.y172{bottom:200.550000px;}
.y4f{bottom:203.250000px;}
.y140{bottom:205.230000px;}
.ya8{bottom:207.210000px;}
.ycd{bottom:208.650000px;}
.y171{bottom:214.050000px;}
.y6c{bottom:216.390000px;}
.y111{bottom:216.930000px;}
.y4e{bottom:219.630000px;}
.y13f{bottom:221.610000px;}
.ya7{bottom:223.590000px;}
.ycc{bottom:225.030000px;}
.y170{bottom:227.550000px;}
.y6b{bottom:232.770000px;}
.y110{bottom:233.310000px;}
.y13e{bottom:237.990000px;}
.ya6{bottom:239.970000px;}
.y16f{bottom:241.050000px;}
.ycb{bottom:241.410000px;}
.y4d{bottom:241.950000px;}
.y6a{bottom:249.150000px;}
.y10f{bottom:249.690000px;}
.y13d{bottom:254.370000px;}
.ya5{bottom:256.350000px;}
.yca{bottom:257.790000px;}
.y16e{bottom:258.330000px;}
.y69{bottom:265.530000px;}
.y10e{bottom:266.070000px;}
.y13c{bottom:270.750000px;}
.y4c{bottom:271.110000px;}
.y16d{bottom:271.830000px;}
.ya4{bottom:272.730000px;}
.yc9{bottom:274.170000px;}
.y68{bottom:281.910000px;}
.y10d{bottom:282.450000px;}
.y16c{bottom:285.330000px;}
.y4b{bottom:286.590000px;}
.y13b{bottom:287.130000px;}
.ya3{bottom:289.155000px;}
.yc8{bottom:290.595000px;}
.yeb{bottom:298.335000px;}
.y10c{bottom:298.875000px;}
.y4a{bottom:302.115000px;}
.y13a{bottom:303.555000px;}
.ya2{bottom:305.535000px;}
.yc7{bottom:306.975000px;}
.y67{bottom:307.335000px;}
.yea{bottom:314.715000px;}
.y10b{bottom:315.255000px;}
.y16b{bottom:315.975000px;}
.y49{bottom:317.595000px;}
.y139{bottom:319.935000px;}
.ya1{bottom:321.915000px;}
.y66{bottom:323.715000px;}
.y16a{bottom:329.475000px;}
.ye9{bottom:331.095000px;}
.y10a{bottom:331.635000px;}
.yd3{bottom:332.355000px;}
.ya0{bottom:338.295000px;}
.y65{bottom:340.095000px;}
.y138{bottom:345.315000px;}
.y169{bottom:346.755000px;}
.ye8{bottom:347.475000px;}
.y48{bottom:348.015000px;}
.y9f{bottom:354.675000px;}
.y64{bottom:356.655000px;}
.y137{bottom:361.695000px;}
.y47{bottom:363.675000px;}
.ye7{bottom:363.855000px;}
.y168{bottom:364.035000px;}
.y109{bottom:364.395000px;}
.y9e{bottom:371.055000px;}
.y63{bottom:373.035000px;}
.y167{bottom:377.535000px;}
.y136{bottom:378.075000px;}
.y46{bottom:379.155000px;}
.ye6{bottom:380.235000px;}
.y108{bottom:380.775000px;}
.y9d{bottom:387.435000px;}
.y62{bottom:389.415000px;}
.y166{bottom:391.035000px;}
.y135{bottom:394.455000px;}
.y45{bottom:394.815000px;}
.ye5{bottom:396.615000px;}
.y107{bottom:397.155000px;}
.y9c{bottom:403.815000px;}
.y61{bottom:405.795000px;}
.y165{bottom:408.315000px;}
.y44{bottom:410.295000px;}
.y134{bottom:411.015000px;}
.ye4{bottom:412.995000px;}
.y106{bottom:413.535000px;}
.y9b{bottom:420.195000px;}
.y164{bottom:421.815000px;}
.y60{bottom:422.175000px;}
.y43{bottom:425.775000px;}
.y133{bottom:427.395000px;}
.ye3{bottom:429.375000px;}
.y105{bottom:429.915000px;}
.y163{bottom:435.315000px;}
.y9a{bottom:436.575000px;}
.y5f{bottom:438.555000px;}
.y42{bottom:441.255000px;}
.ye2{bottom:445.755000px;}
.y162{bottom:448.815000px;}
.y132{bottom:452.775000px;}
.y99{bottom:452.955000px;}
.y5e{bottom:454.935000px;}
.y104{bottom:455.295000px;}
.y41{bottom:456.915000px;}
.ye1{bottom:462.135000px;}
.y161{bottom:466.095000px;}
.y131{bottom:469.155000px;}
.y98{bottom:469.335000px;}
.y5d{bottom:471.315000px;}
.y103{bottom:471.675000px;}
.y40{bottom:472.395000px;}
.ye0{bottom:478.515000px;}
.y160{bottom:479.595000px;}
.y130{bottom:485.535000px;}
.y5c{bottom:487.695000px;}
.y3f{bottom:487.875000px;}
.y102{bottom:488.055000px;}
.y15f{bottom:493.095000px;}
.y97{bottom:494.715000px;}
.ydf{bottom:494.895000px;}
.y12f{bottom:501.915000px;}
.y3e{bottom:503.355000px;}
.y101{bottom:504.435000px;}
.y15e{bottom:506.595000px;}
.y96{bottom:511.095000px;}
.yde{bottom:511.455000px;}
.y5b{bottom:513.075000px;}
.y12e{bottom:518.295000px;}
.y3d{bottom:519.015000px;}
.y100{bottom:520.815000px;}
.y15d{bottom:523.875000px;}
.y95{bottom:527.475000px;}
.ydd{bottom:527.835000px;}
.y5a{bottom:529.455000px;}
.y3c{bottom:534.495000px;}
.y12d{bottom:534.675000px;}
.yff{bottom:537.195000px;}
.y15c{bottom:537.375000px;}
.y94{bottom:543.855000px;}
.ydc{bottom:544.215000px;}
.y59{bottom:545.835000px;}
.y3b{bottom:550.005000px;}
.y15b{bottom:550.905000px;}
.y12c{bottom:551.085000px;}
.yfe{bottom:553.605000px;}
.y117{bottom:557.460000px;}
.y93{bottom:560.265000px;}
.y58{bottom:562.245000px;}
.y15a{bottom:564.405000px;}
.y3a{bottom:565.485000px;}
.yfd{bottom:569.985000px;}
.y12b{bottom:574.845000px;}
.y92{bottom:576.645000px;}
.y57{bottom:578.625000px;}
.y39{bottom:581.145000px;}
.y159{bottom:584.205000px;}
.yfc{bottom:586.365000px;}
.y91{bottom:593.025000px;}
.y56{bottom:595.005000px;}
.y38{bottom:596.625000px;}
.y1b6{bottom:602.385000px;}
.yfb{bottom:602.745000px;}
.y12a{bottom:604.005000px;}
.y90{bottom:609.405000px;}
.y55{bottom:611.385000px;}
.y37{bottom:612.105000px;}
.y158{bottom:613.545000px;}
.yfa{bottom:619.125000px;}
.y129{bottom:620.385000px;}
.y198{bottom:622.905000px;}
.y8f{bottom:625.785000px;}
.yc6{bottom:629.385000px;}
.y157{bottom:629.925000px;}
.y36{bottom:630.285000px;}
.yf9{bottom:635.685000px;}
.y197{bottom:636.405000px;}
.y128{bottom:636.765000px;}
.y1b5{bottom:637.845000px;}
.y8e{bottom:642.165000px;}
.y156{bottom:646.305000px;}
.y196{bottom:649.905000px;}
.y1b4{bottom:651.345000px;}
.yf8{bottom:652.065000px;}
.y127{bottom:653.145000px;}
.y8d{bottom:658.545000px;}
.y30{bottom:662.685000px;}
.y195{bottom:663.405000px;}
.y1b3{bottom:664.845000px;}
.yf7{bottom:668.445000px;}
.y126{bottom:669.525000px;}
.y35{bottom:671.145000px;}
.yc5{bottom:674.925000px;}
.y8c{bottom:675.105000px;}
.y1b2{bottom:678.345000px;}
.y2f{bottom:679.965000px;}
.y194{bottom:680.685000px;}
.yf6{bottom:684.825000px;}
.y155{bottom:685.005000px;}
.y125{bottom:685.905000px;}
.y34{bottom:686.625000px;}
.y14{bottom:690.742648px;}
.y28{bottom:690.765000px;}
.yc4{bottom:691.305000px;}
.y8b{bottom:691.485000px;}
.y193{bottom:694.185000px;}
.y1b1{bottom:695.625000px;}
.y2e{bottom:697.245000px;}
.yf5{bottom:701.205000px;}
.y33{bottom:702.105000px;}
.y124{bottom:702.285000px;}
.yc3{bottom:707.685000px;}
.y8a{bottom:707.865000px;}
.y1b0{bottom:709.125000px;}
.y192{bottom:711.285000px;}
.y154{bottom:714.165000px;}
.y2d{bottom:714.525000px;}
.y13{bottom:714.664469px;}
.y32{bottom:717.585000px;}
.yf4{bottom:718.125000px;}
.y123{bottom:718.665000px;}
.y1af{bottom:722.625000px;}
.yc2{bottom:724.065000px;}
.y89{bottom:724.245000px;}
.y191{bottom:724.785000px;}
.y27{bottom:727.305000px;}
.y11{bottom:729.498403px;}
.y153{bottom:730.545000px;}
.y2c{bottom:731.805000px;}
.y31{bottom:733.065000px;}
.y122{bottom:735.045000px;}
.y1ae{bottom:739.905000px;}
.yf3{bottom:740.085000px;}
.yc1{bottom:740.445000px;}
.y88{bottom:740.625000px;}
.y190{bottom:742.065000px;}
.yf{bottom:745.446287px;}
.y152{bottom:747.105000px;}
.y2b{bottom:748.905000px;}
.y121{bottom:751.605000px;}
.y1ad{bottom:753.405000px;}
.y18f{bottom:755.565000px;}
.yc0{bottom:756.825000px;}
.y87{bottom:757.005000px;}
.y151{bottom:763.485000px;}
.y26{bottom:763.845000px;}
.y2a{bottom:766.185000px;}
.y1ac{bottom:766.905000px;}
.y120{bottom:767.985000px;}
.y18e{bottom:769.065000px;}
.yf2{bottom:771.585000px;}
.ybf{bottom:773.205000px;}
.y86{bottom:773.385000px;}
.y150{bottom:779.865000px;}
.y1ab{bottom:780.405000px;}
.y29{bottom:783.465000px;}
.y11f{bottom:784.365000px;}
.ye{bottom:785.433190px;}
.y18d{bottom:786.345000px;}
.ybe{bottom:789.585000px;}
.y85{bottom:789.765000px;}
.yf1{bottom:792.105000px;}
.y14f{bottom:796.245000px;}
.y1aa{bottom:797.685000px;}
.y18c{bottom:799.845000px;}
.y25{bottom:800.745000px;}
.ybd{bottom:805.965000px;}
.yd{bottom:809.355011px;}
.y1a9{bottom:811.230000px;}
.y84{bottom:812.310000px;}
.y14e{bottom:812.670000px;}
.y11e{bottom:817.170000px;}
.y24{bottom:818.070000px;}
.ybc{bottom:822.390000px;}
.yb{bottom:824.188969px;}
.y1a8{bottom:824.730000px;}
.ydb{bottom:829.050000px;}
.y18b{bottom:830.670000px;}
.y11d{bottom:833.550000px;}
.y23{bottom:835.350000px;}
.y1a7{bottom:838.230000px;}
.ybb{bottom:838.770000px;}
.y9{bottom:840.136853px;}
.y83{bottom:841.470000px;}
.y18a{bottom:844.170000px;}
.yda{bottom:845.430000px;}
.y11c{bottom:849.930000px;}
.y22{bottom:852.450000px;}
.y1a6{bottom:855.330000px;}
.y82{bottom:857.850000px;}
.y189{bottom:861.450000px;}
.yd9{bottom:861.810000px;}
.yba{bottom:864.330000px;}
.y11b{bottom:866.310000px;}
.y1a5{bottom:868.830000px;}
.y21{bottom:869.730000px;}
.y8{bottom:870.156306px;}
.y81{bottom:874.230000px;}
.y188{bottom:874.950000px;}
.yd8{bottom:878.190000px;}
.yb9{bottom:880.710000px;}
.y1a4{bottom:882.330000px;}
.y11a{bottom:882.690000px;}
.y20{bottom:887.010000px;}
.y80{bottom:890.610000px;}
.y187{bottom:892.230000px;}
.yd7{bottom:894.570000px;}
.y1a3{bottom:895.830000px;}
.yb8{bottom:897.090000px;}
.y119{bottom:903.750000px;}
.y1f{bottom:904.290000px;}
.y186{bottom:905.730000px;}
.y7f{bottom:906.990000px;}
.y7{bottom:908.032523px;}
.y14d{bottom:910.950000px;}
.y1a2{bottom:913.110000px;}
.yb7{bottom:913.470000px;}
.yd6{bottom:917.070000px;}
.y1e{bottom:921.570000px;}
.y185{bottom:922.830000px;}
.y6{bottom:923.980403px;}
.y1a1{bottom:926.610000px;}
.y14c{bottom:927.330000px;}
.yb6{bottom:929.850000px;}
.y7e{bottom:932.370000px;}
.y184{bottom:936.330000px;}
.y1d{bottom:938.850000px;}
.y1a0{bottom:940.110000px;}
.y14b{bottom:943.710000px;}
.yb5{bottom:946.230000px;}
.y7d{bottom:948.750000px;}
.y183{bottom:949.830000px;}
.y19f{bottom:953.610000px;}
.y1c{bottom:955.950000px;}
.y14a{bottom:960.090000px;}
.yb4{bottom:962.610000px;}
.y182{bottom:963.330000px;}
.y19e{bottom:967.110000px;}
.y5{bottom:972.820788px;}
.y1b{bottom:973.230000px;}
.y7c{bottom:975.210000px;}
.y149{bottom:976.470000px;}
.yb3{bottom:978.990000px;}
.y181{bottom:980.610000px;}
.y19d{bottom:984.390000px;}
.y4{bottom:987.771926px;}
.y7b{bottom:991.590000px;}
.y148{bottom:992.850000px;}
.y180{bottom:994.110000px;}
.yb2{bottom:995.370000px;}
.y19c{bottom:997.890000px;}
.y17f{bottom:1007.610000px;}
.y7a{bottom:1007.970000px;}
.y147{bottom:1009.230000px;}
.y1a{bottom:1009.590000px;}
.y19b{bottom:1011.390000px;}
.yb1{bottom:1011.750000px;}
.y17e{bottom:1024.890000px;}
.yb0{bottom:1028.130000px;}
.y3{bottom:1029.635113px;}
.y146{bottom:1031.730000px;}
.y19{bottom:1031.910000px;}
.y79{bottom:1034.430000px;}
.y17d{bottom:1038.390000px;}
.yaf{bottom:1044.510000px;}
.y78{bottom:1050.810000px;}
.y17c{bottom:1051.890000px;}
.y19a{bottom:1055.670000px;}
.yae{bottom:1060.890000px;}
.y17b{bottom:1065.390000px;}
.y199{bottom:1069.200000px;}
.y2{bottom:1070.501557px;}
.y18{bottom:1073.340000px;}
.y77{bottom:1077.300000px;}
.y17a{bottom:1082.700000px;}
.y76{bottom:1093.680000px;}
.y179{bottom:1096.200000px;}
.y73{bottom:1127.449950px;}
.h8{height:12.957648px;}
.h9{height:12.957670px;}
.h16{height:14.850082px;}
.h5{height:20.209344px;}
.h6{height:23.096394px;}
.h18{height:25.031250px;}
.h2{height:25.983443px;}
.h4{height:28.870492px;}
.ha{height:33.518320px;}
.h7{height:34.644590px;}
.h14{height:35.695312px;}
.h17{height:35.820000px;}
.h10{height:36.571289px;}
.hf{height:36.597656px;}
.h11{height:37.494141px;}
.he{height:37.520508px;}
.h13{height:38.759766px;}
.hd{height:41.493516px;}
.hc{height:41.522695px;}
.h12{height:41.660156px;}
.h15{height:43.804688px;}
.h3{height:65.722711px;}
.hb{height:100.054688px;}
.h1{height:1187.120435px;}
.h0{height:1188.000000px;}
.w4{width:20.250000px;}
.w5{width:140.220000px;}
.w3{width:358.827303px;}
.w2{width:359.824071px;}
.w1{width:917.999890px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3d{left:8.670000px;}
.x36{left:25.500000px;}
.x1{left:59.804553px;}
.x7{left:64.788265px;}
.x8{left:66.960000px;}
.xd{left:68.040000px;}
.x43{left:75.000000px;}
.xc{left:76.680000px;}
.x30{left:88.380000px;}
.x10{left:89.460000px;}
.x9{left:90.540000px;}
.x39{left:93.636000px;}
.x42{left:95.076000px;}
.x3{left:99.674261px;}
.x4{left:110.638422px;}
.xf{left:112.536000px;}
.xe{left:130.716000px;}
.x2c{left:158.790000px;}
.x11{left:173.910000px;}
.x3c{left:185.580000px;}
.x37{left:192.270000px;}
.x31{left:198.569940px;}
.x3e{left:204.870000px;}
.x35{left:220.317090px;}
.xb{left:249.510000px;}
.x15{left:268.049985px;}
.x13{left:276.690000px;}
.x12{left:286.314900px;}
.x14{left:290.054985px;}
.x18{left:291.314985px;}
.x2e{left:304.815015px;}
.x2d{left:307.875000px;}
.x17{left:312.554985px;}
.x16{left:330.734985px;}
.x19{left:358.815000px;}
.xa{left:393.015000px;}
.x34{left:448.875090px;}
.x2{left:458.501570px;}
.x1d{left:468.254970px;}
.x32{left:472.574910px;}
.x1b{left:476.894985px;}
.x21{left:487.185015px;}
.x1c{left:490.244970px;}
.x20{left:491.504970px;}
.x33{left:494.204940px;}
.x5{left:499.368010px;}
.x38{left:504.465000px;}
.x1a{left:508.425300px;}
.x6{left:510.332182px;}
.x1f{left:512.744970px;}
.x1e{left:530.924970px;}
.x3f{left:551.985000px;}
.x22{left:559.005000px;}
.x23{left:574.125000px;}
.x40{left:600.225000px;}
.x3b{left:602.205000px;}
.x41{left:622.545000px;}
.x27{left:668.265030px;}
.x25{left:676.950015px;}
.x2b{left:678.750075px;}
.x26{left:690.270030px;}
.x2a{left:691.530030px;}
.x24{left:703.770300px;}
.x29{left:712.770030px;}
.x28{left:730.950030px;}
.x3a{left:732.930000px;}
.x2f{left:759.030000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls18{letter-spacing:-0.960000pt;}
.ls21{letter-spacing:-0.821333pt;}
.ls10{letter-spacing:-0.544000pt;}
.ls6{letter-spacing:-0.480000pt;}
.ls11{letter-spacing:-0.409067pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls25{letter-spacing:-0.239467pt;}
.ls20{letter-spacing:-0.230933pt;}
.ls16{letter-spacing:-0.047467pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.012800pt;}
.lsf{letter-spacing:0.047360pt;}
.ls5{letter-spacing:0.047467pt;}
.ls1d{letter-spacing:0.065280pt;}
.ls4{letter-spacing:0.094720pt;}
.ls19{letter-spacing:0.094933pt;}
.ls7{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.175360pt;}
.ls17{letter-spacing:0.183467pt;}
.ls8{letter-spacing:0.230933pt;}
.ls3{letter-spacing:0.231040pt;}
.ls1c{letter-spacing:0.272640pt;}
.ls1{letter-spacing:0.320000pt;}
.ls12{letter-spacing:7.632640pt;}
.ls15{letter-spacing:8.272640pt;}
.lse{letter-spacing:9.552640pt;}
.ls24{letter-spacing:11.119360pt;}
.ls23{letter-spacing:11.247360pt;}
.ls1f{letter-spacing:13.039360pt;}
.ls22{letter-spacing:13.167360pt;}
.ls1a{letter-spacing:13.392640pt;}
.ls14{letter-spacing:15.952640pt;}
.ls1b{letter-spacing:17.232640pt;}
.lsc{letter-spacing:18.512640pt;}
.lsd{letter-spacing:23.840000pt;}
.ls2{letter-spacing:26.832640pt;}
.ls1e{letter-spacing:32.239360pt;}
.lsb{letter-spacing:37.712640pt;}
.ws9{word-spacing:-48.000000pt;}
.ws6{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.510933pt;}
.ws10{word-spacing:-13.463467pt;}
.ws11{word-spacing:-13.374933pt;}
.ws5{word-spacing:-13.327467pt;}
.ws7{word-spacing:-13.280000pt;}
.wsf{word-spacing:-13.232533pt;}
.ws12{word-spacing:-13.049067pt;}
.wsc{word-spacing:-12.960000pt;}
.wse{word-spacing:-12.870933pt;}
.wsd{word-spacing:-12.736000pt;}
.ws13{word-spacing:-12.458667pt;}
.ws8{word-spacing:-12.000000pt;}
.wsb{word-spacing:-10.720000pt;}
.ws14{word-spacing:-10.480533pt;}
.ws3{word-spacing:-7.146783pt;}
.ws2{word-spacing:-6.525549pt;}
.ws0{word-spacing:-6.432104pt;}
.ws1{word-spacing:-5.717426pt;}
.ws4{word-spacing:0.000000pt;}
._4{margin-left:-63.838933pt;}
._23{margin-left:-4.218923pt;}
._c{margin-left:-3.027158pt;}
._1c{margin-left:-2.134338pt;}
._0{margin-left:-1.199210pt;}
._1{width:1.181013pt;}
._8{width:2.831210pt;}
._7{width:4.224000pt;}
._b{width:5.338667pt;}
._25{width:6.265324pt;}
._11{width:7.168000pt;}
._5{width:8.448000pt;}
._13{width:9.667488pt;}
._6{width:10.704000pt;}
._14{width:11.627605pt;}
._12{width:12.938667pt;}
._1f{width:14.798872pt;}
._a{width:15.888000pt;}
._9{width:17.424000pt;}
._19{width:18.325951pt;}
._26{width:19.429090pt;}
._18{width:20.415071pt;}
._17{width:21.481440pt;}
._1a{width:22.607360pt;}
._1b{width:23.743488pt;}
._22{width:25.009579pt;}
._24{width:26.099776pt;}
._10{width:27.034667pt;}
._f{width:28.288000pt;}
._15{width:30.020821pt;}
._16{width:30.915776pt;}
._21{width:32.240700pt;}
._20{width:33.475138pt;}
._e{width:34.796864pt;}
._d{width:35.808000pt;}
._1e{width:41.835957pt;}
._1d{width:43.080684pt;}
._2{width:49.348267pt;}
._3{width:64.549973pt;}
.fsd{font-size:21.333333pt;}
.fs3{font-size:24.807814pt;}
.fs4{font-size:28.351788pt;}
.fs0{font-size:31.895761pt;}
.fs2{font-size:35.439735pt;}
.fsc{font-size:37.333333pt;}
.fs5{font-size:42.527682pt;}
.fsb{font-size:42.666667pt;}
.fs6{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fsa{font-size:53.333333pt;}
.fs1{font-size:70.879470pt;}
.fs7{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.781836pt;}
.yd5{bottom:2.589333pt;}
.ya{bottom:3.543973pt;}
.yc{bottom:3.543976pt;}
.y10{bottom:3.543995pt;}
.y12{bottom:3.543998pt;}
.y1b7{bottom:6.666667pt;}
.y118{bottom:16.413333pt;}
.y16{bottom:22.149893pt;}
.y75{bottom:29.210667pt;}
.yd4{bottom:34.805680pt;}
.y72{bottom:37.395067pt;}
.y15{bottom:42.527741pt;}
.y17{bottom:50.112000pt;}
.y74{bottom:80.000000pt;}
.y178{bottom:99.552000pt;}
.y145{bottom:101.632000pt;}
.yad{bottom:103.232000pt;}
.yf0{bottom:106.752000pt;}
.y54{bottom:107.712000pt;}
.y116{bottom:110.592000pt;}
.y177{bottom:111.552000pt;}
.yd2{bottom:112.672000pt;}
.y144{bottom:116.192000pt;}
.yac{bottom:117.792000pt;}
.y71{bottom:119.552000pt;}
.yef{bottom:121.312000pt;}
.y53{bottom:122.272000pt;}
.y176{bottom:123.552000pt;}
.y115{bottom:125.152000pt;}
.yd1{bottom:127.232000pt;}
.y143{bottom:130.752000pt;}
.yab{bottom:132.352000pt;}
.y70{bottom:134.106667pt;}
.y175{bottom:135.546667pt;}
.yee{bottom:135.866667pt;}
.y52{bottom:136.826667pt;}
.y114{bottom:139.706667pt;}
.yd0{bottom:141.786667pt;}
.y142{bottom:145.306667pt;}
.yaa{bottom:146.906667pt;}
.y6f{bottom:148.666667pt;}
.yed{bottom:150.426667pt;}
.y174{bottom:150.906667pt;}
.y51{bottom:151.386667pt;}
.y113{bottom:154.266667pt;}
.ycf{bottom:156.346667pt;}
.y141{bottom:159.866667pt;}
.y173{bottom:162.906667pt;}
.y6e{bottom:163.226667pt;}
.y50{bottom:165.946667pt;}
.yec{bottom:169.146667pt;}
.y112{bottom:169.306667pt;}
.ya9{bottom:169.626667pt;}
.yce{bottom:170.906667pt;}
.y6d{bottom:177.786667pt;}
.y172{bottom:178.266667pt;}
.y4f{bottom:180.666667pt;}
.y140{bottom:182.426667pt;}
.ya8{bottom:184.186667pt;}
.ycd{bottom:185.466667pt;}
.y171{bottom:190.266667pt;}
.y6c{bottom:192.346667pt;}
.y111{bottom:192.826667pt;}
.y4e{bottom:195.226667pt;}
.y13f{bottom:196.986667pt;}
.ya7{bottom:198.746667pt;}
.ycc{bottom:200.026667pt;}
.y170{bottom:202.266667pt;}
.y6b{bottom:206.906667pt;}
.y110{bottom:207.386667pt;}
.y13e{bottom:211.546667pt;}
.ya6{bottom:213.306667pt;}
.y16f{bottom:214.266667pt;}
.ycb{bottom:214.586667pt;}
.y4d{bottom:215.066667pt;}
.y6a{bottom:221.466667pt;}
.y10f{bottom:221.946667pt;}
.y13d{bottom:226.106667pt;}
.ya5{bottom:227.866667pt;}
.yca{bottom:229.146667pt;}
.y16e{bottom:229.626667pt;}
.y69{bottom:236.026667pt;}
.y10e{bottom:236.506667pt;}
.y13c{bottom:240.666667pt;}
.y4c{bottom:240.986667pt;}
.y16d{bottom:241.626667pt;}
.ya4{bottom:242.426667pt;}
.yc9{bottom:243.706667pt;}
.y68{bottom:250.586667pt;}
.y10d{bottom:251.066667pt;}
.y16c{bottom:253.626667pt;}
.y4b{bottom:254.746667pt;}
.y13b{bottom:255.226667pt;}
.ya3{bottom:257.026667pt;}
.yc8{bottom:258.306667pt;}
.yeb{bottom:265.186667pt;}
.y10c{bottom:265.666667pt;}
.y4a{bottom:268.546667pt;}
.y13a{bottom:269.826667pt;}
.ya2{bottom:271.586667pt;}
.yc7{bottom:272.866667pt;}
.y67{bottom:273.186667pt;}
.yea{bottom:279.746667pt;}
.y10b{bottom:280.226667pt;}
.y16b{bottom:280.866667pt;}
.y49{bottom:282.306667pt;}
.y139{bottom:284.386667pt;}
.ya1{bottom:286.146667pt;}
.y66{bottom:287.746667pt;}
.y16a{bottom:292.866667pt;}
.ye9{bottom:294.306667pt;}
.y10a{bottom:294.786667pt;}
.yd3{bottom:295.426667pt;}
.ya0{bottom:300.706667pt;}
.y65{bottom:302.306667pt;}
.y138{bottom:306.946667pt;}
.y169{bottom:308.226667pt;}
.ye8{bottom:308.866667pt;}
.y48{bottom:309.346667pt;}
.y9f{bottom:315.266667pt;}
.y64{bottom:317.026667pt;}
.y137{bottom:321.506667pt;}
.y47{bottom:323.266667pt;}
.ye7{bottom:323.426667pt;}
.y168{bottom:323.586667pt;}
.y109{bottom:323.906667pt;}
.y9e{bottom:329.826667pt;}
.y63{bottom:331.586667pt;}
.y167{bottom:335.586667pt;}
.y136{bottom:336.066667pt;}
.y46{bottom:337.026667pt;}
.ye6{bottom:337.986667pt;}
.y108{bottom:338.466667pt;}
.y9d{bottom:344.386667pt;}
.y62{bottom:346.146667pt;}
.y166{bottom:347.586667pt;}
.y135{bottom:350.626667pt;}
.y45{bottom:350.946667pt;}
.ye5{bottom:352.546667pt;}
.y107{bottom:353.026667pt;}
.y9c{bottom:358.946667pt;}
.y61{bottom:360.706667pt;}
.y165{bottom:362.946667pt;}
.y44{bottom:364.706667pt;}
.y134{bottom:365.346667pt;}
.ye4{bottom:367.106667pt;}
.y106{bottom:367.586667pt;}
.y9b{bottom:373.506667pt;}
.y164{bottom:374.946667pt;}
.y60{bottom:375.266667pt;}
.y43{bottom:378.466667pt;}
.y133{bottom:379.906667pt;}
.ye3{bottom:381.666667pt;}
.y105{bottom:382.146667pt;}
.y163{bottom:386.946667pt;}
.y9a{bottom:388.066667pt;}
.y5f{bottom:389.826667pt;}
.y42{bottom:392.226667pt;}
.ye2{bottom:396.226667pt;}
.y162{bottom:398.946667pt;}
.y132{bottom:402.466667pt;}
.y99{bottom:402.626667pt;}
.y5e{bottom:404.386667pt;}
.y104{bottom:404.706667pt;}
.y41{bottom:406.146667pt;}
.ye1{bottom:410.786667pt;}
.y161{bottom:414.306667pt;}
.y131{bottom:417.026667pt;}
.y98{bottom:417.186667pt;}
.y5d{bottom:418.946667pt;}
.y103{bottom:419.266667pt;}
.y40{bottom:419.906667pt;}
.ye0{bottom:425.346667pt;}
.y160{bottom:426.306667pt;}
.y130{bottom:431.586667pt;}
.y5c{bottom:433.506667pt;}
.y3f{bottom:433.666667pt;}
.y102{bottom:433.826667pt;}
.y15f{bottom:438.306667pt;}
.y97{bottom:439.746667pt;}
.ydf{bottom:439.906667pt;}
.y12f{bottom:446.146667pt;}
.y3e{bottom:447.426667pt;}
.y101{bottom:448.386667pt;}
.y15e{bottom:450.306667pt;}
.y96{bottom:454.306667pt;}
.yde{bottom:454.626667pt;}
.y5b{bottom:456.066667pt;}
.y12e{bottom:460.706667pt;}
.y3d{bottom:461.346667pt;}
.y100{bottom:462.946667pt;}
.y15d{bottom:465.666667pt;}
.y95{bottom:468.866667pt;}
.ydd{bottom:469.186667pt;}
.y5a{bottom:470.626667pt;}
.y3c{bottom:475.106667pt;}
.y12d{bottom:475.266667pt;}
.yff{bottom:477.506667pt;}
.y15c{bottom:477.666667pt;}
.y94{bottom:483.426667pt;}
.ydc{bottom:483.746667pt;}
.y59{bottom:485.186667pt;}
.y3b{bottom:488.893333pt;}
.y15b{bottom:489.693333pt;}
.y12c{bottom:489.853333pt;}
.yfe{bottom:492.093333pt;}
.y117{bottom:495.520000pt;}
.y93{bottom:498.013333pt;}
.y58{bottom:499.773333pt;}
.y15a{bottom:501.693333pt;}
.y3a{bottom:502.653333pt;}
.yfd{bottom:506.653333pt;}
.y12b{bottom:510.973333pt;}
.y92{bottom:512.573333pt;}
.y57{bottom:514.333333pt;}
.y39{bottom:516.573333pt;}
.y159{bottom:519.293333pt;}
.yfc{bottom:521.213333pt;}
.y91{bottom:527.133333pt;}
.y56{bottom:528.893333pt;}
.y38{bottom:530.333333pt;}
.y1b6{bottom:535.453333pt;}
.yfb{bottom:535.773333pt;}
.y12a{bottom:536.893333pt;}
.y90{bottom:541.693333pt;}
.y55{bottom:543.453333pt;}
.y37{bottom:544.093333pt;}
.y158{bottom:545.373333pt;}
.yfa{bottom:550.333333pt;}
.y129{bottom:551.453333pt;}
.y198{bottom:553.693333pt;}
.y8f{bottom:556.253333pt;}
.yc6{bottom:559.453333pt;}
.y157{bottom:559.933333pt;}
.y36{bottom:560.253333pt;}
.yf9{bottom:565.053333pt;}
.y197{bottom:565.693333pt;}
.y128{bottom:566.013333pt;}
.y1b5{bottom:566.973333pt;}
.y8e{bottom:570.813333pt;}
.y156{bottom:574.493333pt;}
.y196{bottom:577.693333pt;}
.y1b4{bottom:578.973333pt;}
.yf8{bottom:579.613333pt;}
.y127{bottom:580.573333pt;}
.y8d{bottom:585.373333pt;}
.y30{bottom:589.053333pt;}
.y195{bottom:589.693333pt;}
.y1b3{bottom:590.973333pt;}
.yf7{bottom:594.173333pt;}
.y126{bottom:595.133333pt;}
.y35{bottom:596.573333pt;}
.yc5{bottom:599.933333pt;}
.y8c{bottom:600.093333pt;}
.y1b2{bottom:602.973333pt;}
.y2f{bottom:604.413333pt;}
.y194{bottom:605.053333pt;}
.yf6{bottom:608.733333pt;}
.y155{bottom:608.893333pt;}
.y125{bottom:609.693333pt;}
.y34{bottom:610.333333pt;}
.y14{bottom:613.993465pt;}
.y28{bottom:614.013333pt;}
.yc4{bottom:614.493333pt;}
.y8b{bottom:614.653333pt;}
.y193{bottom:617.053333pt;}
.y1b1{bottom:618.333333pt;}
.y2e{bottom:619.773333pt;}
.yf5{bottom:623.293333pt;}
.y33{bottom:624.093333pt;}
.y124{bottom:624.253333pt;}
.yc3{bottom:629.053333pt;}
.y8a{bottom:629.213333pt;}
.y1b0{bottom:630.333333pt;}
.y192{bottom:632.253333pt;}
.y154{bottom:634.813333pt;}
.y2d{bottom:635.133333pt;}
.y13{bottom:635.257306pt;}
.y32{bottom:637.853333pt;}
.yf4{bottom:638.333333pt;}
.y123{bottom:638.813333pt;}
.y1af{bottom:642.333333pt;}
.yc2{bottom:643.613333pt;}
.y89{bottom:643.773333pt;}
.y191{bottom:644.253333pt;}
.y27{bottom:646.493333pt;}
.y11{bottom:648.443025pt;}
.y153{bottom:649.373333pt;}
.y2c{bottom:650.493333pt;}
.y31{bottom:651.613333pt;}
.y122{bottom:653.373333pt;}
.y1ae{bottom:657.693333pt;}
.yf3{bottom:657.853333pt;}
.yc1{bottom:658.173333pt;}
.y88{bottom:658.333333pt;}
.y190{bottom:659.613333pt;}
.yf{bottom:662.618922pt;}
.y152{bottom:664.093333pt;}
.y2b{bottom:665.693333pt;}
.y121{bottom:668.093333pt;}
.y1ad{bottom:669.693333pt;}
.y18f{bottom:671.613333pt;}
.yc0{bottom:672.733333pt;}
.y87{bottom:672.893333pt;}
.y151{bottom:678.653333pt;}
.y26{bottom:678.973333pt;}
.y2a{bottom:681.053333pt;}
.y1ac{bottom:681.693333pt;}
.y120{bottom:682.653333pt;}
.y18e{bottom:683.613333pt;}
.yf2{bottom:685.853333pt;}
.ybf{bottom:687.293333pt;}
.y86{bottom:687.453333pt;}
.y150{bottom:693.213333pt;}
.y1ab{bottom:693.693333pt;}
.y29{bottom:696.413333pt;}
.y11f{bottom:697.213333pt;}
.ye{bottom:698.162835pt;}
.y18d{bottom:698.973333pt;}
.ybe{bottom:701.853333pt;}
.y85{bottom:702.013333pt;}
.yf1{bottom:704.093333pt;}
.y14f{bottom:707.773333pt;}
.y1aa{bottom:709.053333pt;}
.y18c{bottom:710.973333pt;}
.y25{bottom:711.773333pt;}
.ybd{bottom:716.413333pt;}
.yd{bottom:719.426676pt;}
.y1a9{bottom:721.093333pt;}
.y84{bottom:722.053333pt;}
.y14e{bottom:722.373333pt;}
.y11e{bottom:726.373333pt;}
.y24{bottom:727.173333pt;}
.ybc{bottom:731.013333pt;}
.yb{bottom:732.612417pt;}
.y1a8{bottom:733.093333pt;}
.ydb{bottom:736.933333pt;}
.y18b{bottom:738.373333pt;}
.y11d{bottom:740.933333pt;}
.y23{bottom:742.533333pt;}
.y1a7{bottom:745.093333pt;}
.ybb{bottom:745.573333pt;}
.y9{bottom:746.788314pt;}
.y83{bottom:747.973333pt;}
.y18a{bottom:750.373333pt;}
.yda{bottom:751.493333pt;}
.y11c{bottom:755.493333pt;}
.y22{bottom:757.733333pt;}
.y1a6{bottom:760.293333pt;}
.y82{bottom:762.533333pt;}
.y189{bottom:765.733333pt;}
.yd9{bottom:766.053333pt;}
.yba{bottom:768.293333pt;}
.y11b{bottom:770.053333pt;}
.y1a5{bottom:772.293333pt;}
.y21{bottom:773.093333pt;}
.y8{bottom:773.472272pt;}
.y81{bottom:777.093333pt;}
.y188{bottom:777.733333pt;}
.yd8{bottom:780.613333pt;}
.yb9{bottom:782.853333pt;}
.y1a4{bottom:784.293333pt;}
.y11a{bottom:784.613333pt;}
.y20{bottom:788.453333pt;}
.y80{bottom:791.653333pt;}
.y187{bottom:793.093333pt;}
.yd7{bottom:795.173333pt;}
.y1a3{bottom:796.293333pt;}
.yb8{bottom:797.413333pt;}
.y119{bottom:803.333333pt;}
.y1f{bottom:803.813333pt;}
.y186{bottom:805.093333pt;}
.y7f{bottom:806.213333pt;}
.y7{bottom:807.140020pt;}
.y14d{bottom:809.733333pt;}
.y1a2{bottom:811.653333pt;}
.yb7{bottom:811.973333pt;}
.yd6{bottom:815.173333pt;}
.y1e{bottom:819.173333pt;}
.y185{bottom:820.293333pt;}
.y6{bottom:821.315914pt;}
.y1a1{bottom:823.653333pt;}
.y14c{bottom:824.293333pt;}
.yb6{bottom:826.533333pt;}
.y7e{bottom:828.773333pt;}
.y184{bottom:832.293333pt;}
.y1d{bottom:834.533333pt;}
.y1a0{bottom:835.653333pt;}
.y14b{bottom:838.853333pt;}
.yb5{bottom:841.093333pt;}
.y7d{bottom:843.333333pt;}
.y183{bottom:844.293333pt;}
.y19f{bottom:847.653333pt;}
.y1c{bottom:849.733333pt;}
.y14a{bottom:853.413333pt;}
.yb4{bottom:855.653333pt;}
.y182{bottom:856.293333pt;}
.y19e{bottom:859.653333pt;}
.y5{bottom:864.729589pt;}
.y1b{bottom:865.093333pt;}
.y7c{bottom:866.853333pt;}
.y149{bottom:867.973333pt;}
.yb3{bottom:870.213333pt;}
.y181{bottom:871.653333pt;}
.y19d{bottom:875.013333pt;}
.y4{bottom:878.019490pt;}
.y7b{bottom:881.413333pt;}
.y148{bottom:882.533333pt;}
.y180{bottom:883.653333pt;}
.yb2{bottom:884.773333pt;}
.y19c{bottom:887.013333pt;}
.y17f{bottom:895.653333pt;}
.y7a{bottom:895.973333pt;}
.y147{bottom:897.093333pt;}
.y1a{bottom:897.413333pt;}
.y19b{bottom:899.013333pt;}
.yb1{bottom:899.333333pt;}
.y17e{bottom:911.013333pt;}
.yb0{bottom:913.893333pt;}
.y3{bottom:915.231211pt;}
.y146{bottom:917.093333pt;}
.y19{bottom:917.253333pt;}
.y79{bottom:919.493333pt;}
.y17d{bottom:923.013333pt;}
.yaf{bottom:928.453333pt;}
.y78{bottom:934.053333pt;}
.y17c{bottom:935.013333pt;}
.y19a{bottom:938.373333pt;}
.yae{bottom:943.013333pt;}
.y17b{bottom:947.013333pt;}
.y199{bottom:950.400000pt;}
.y2{bottom:951.556940pt;}
.y18{bottom:954.080000pt;}
.y77{bottom:957.600000pt;}
.y17a{bottom:962.400000pt;}
.y76{bottom:972.160000pt;}
.y179{bottom:974.400000pt;}
.y73{bottom:1002.177733pt;}
.h8{height:11.517910pt;}
.h9{height:11.517929pt;}
.h16{height:13.200073pt;}
.h5{height:17.963862pt;}
.h6{height:20.530128pt;}
.h18{height:22.250000pt;}
.h2{height:23.096394pt;}
.h4{height:25.662660pt;}
.ha{height:29.794062pt;}
.h7{height:30.795191pt;}
.h14{height:31.729167pt;}
.h17{height:31.840000pt;}
.h10{height:32.507812pt;}
.hf{height:32.531250pt;}
.h11{height:33.328125pt;}
.he{height:33.351562pt;}
.h13{height:34.453125pt;}
.hd{height:36.883125pt;}
.hc{height:36.909063pt;}
.h12{height:37.031250pt;}
.h15{height:38.937500pt;}
.h3{height:58.420188pt;}
.hb{height:88.937500pt;}
.h1{height:1055.218164pt;}
.h0{height:1056.000000pt;}
.w4{width:18.000000pt;}
.w5{width:124.640000pt;}
.w3{width:318.957603pt;}
.w2{width:319.843619pt;}
.w1{width:815.999902pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3d{left:7.706667pt;}
.x36{left:22.666667pt;}
.x1{left:53.159602pt;}
.x7{left:57.589569pt;}
.x8{left:59.520000pt;}
.xd{left:60.480000pt;}
.x43{left:66.666667pt;}
.xc{left:68.160000pt;}
.x30{left:78.560000pt;}
.x10{left:79.520000pt;}
.x9{left:80.480000pt;}
.x39{left:83.232000pt;}
.x42{left:84.512000pt;}
.x3{left:88.599344pt;}
.x4{left:98.345264pt;}
.xf{left:100.032000pt;}
.xe{left:116.192000pt;}
.x2c{left:141.146667pt;}
.x11{left:154.586667pt;}
.x3c{left:164.960000pt;}
.x37{left:170.906667pt;}
.x31{left:176.506613pt;}
.x3e{left:182.106667pt;}
.x35{left:195.837413pt;}
.xb{left:221.786667pt;}
.x15{left:238.266653pt;}
.x13{left:245.946667pt;}
.x12{left:254.502133pt;}
.x14{left:257.826653pt;}
.x18{left:258.946653pt;}
.x2e{left:270.946680pt;}
.x2d{left:273.666667pt;}
.x17{left:277.826653pt;}
.x16{left:293.986653pt;}
.x19{left:318.946667pt;}
.xa{left:349.346667pt;}
.x34{left:399.000080pt;}
.x2{left:407.556951pt;}
.x1d{left:416.226640pt;}
.x32{left:420.066587pt;}
.x1b{left:423.906653pt;}
.x21{left:433.053347pt;}
.x1c{left:435.773307pt;}
.x20{left:436.893307pt;}
.x33{left:439.293280pt;}
.x5{left:443.882676pt;}
.x38{left:448.413333pt;}
.x1a{left:451.933600pt;}
.x6{left:453.628606pt;}
.x1f{left:455.773307pt;}
.x1e{left:471.933307pt;}
.x3f{left:490.653333pt;}
.x22{left:496.893333pt;}
.x23{left:510.333333pt;}
.x40{left:533.533333pt;}
.x3b{left:535.293333pt;}
.x41{left:553.373333pt;}
.x27{left:594.013360pt;}
.x25{left:601.733347pt;}
.x2b{left:603.333400pt;}
.x26{left:613.573360pt;}
.x2a{left:614.693360pt;}
.x24{left:625.573600pt;}
.x29{left:633.573360pt;}
.x28{left:649.733360pt;}
.x3a{left:651.493333pt;}
.x2f{left:674.693333pt;}
}




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