
    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_e496f12f4fd440338705fead.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_9ca14371bca2e9566c15a24c.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_00236ab2243867c4e0b30cbc.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_6c223f4734c1443f833a1fe8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.739746;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_8818bd218163d7fee617c3dc.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_916c5335bf8f1ab48b3d6440.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_f72b1e2acae68d51ad10ab60.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.035156;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_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.003906;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_3ca9e927e485a4219c5e64b6.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_745dbc3099480da2d6d4a7fc.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.091309;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_e431b9efe15df9cff325870e.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.010254;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_ca88b9a02a982421a2937e48.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.987793;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_a14e6a449eca7d939012085a.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.187500;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_71b70db157a4a8cdaa60aa83.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.956543;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_19b27c4c211895cd085f2316.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_91d81cea562731c65d4e1753.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.065430;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_f0c497dab6a08e20efa644aa.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.064941;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.170839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170839,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.290036,0.000000,-0.096669,0.230554,0,0);-ms-transform:matrix(0.290036,0.000000,-0.096669,0.230554,0,0);-webkit-transform:matrix(0.290036,0.000000,-0.096669,0.230554,0,0);}
.m3{transform:matrix(0.314499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314499,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);}
.v6{vertical-align:-88.560000px;}
.v2{vertical-align:-87.120000px;}
.v5{vertical-align:-80.640000px;}
.v1{vertical-align:-74.160000px;}
.v3{vertical-align:-69.120000px;}
.v7{vertical-align:-67.680000px;}
.v8{vertical-align:-27.360000px;}
.va{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:27.360000px;}
.v9{vertical-align:48.749645px;}
.ls10{letter-spacing:-0.342600px;}
.ls26{letter-spacing:-0.220200px;}
.lse{letter-spacing:-0.109200px;}
.lsd{letter-spacing:-0.106800px;}
.ls20{letter-spacing:-0.097800px;}
.lsc{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.012960px;}
.ls16{letter-spacing:0.053280px;}
.ls18{letter-spacing:0.106560px;}
.ls5{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.188400px;}
.ls24{letter-spacing:0.259920px;}
.ls1{letter-spacing:0.305280px;}
.ls25{letter-spacing:0.306600px;}
.lsb{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.720000px;}
.ls17{letter-spacing:0.774000px;}
.ls1d{letter-spacing:0.828000px;}
.ls1b{letter-spacing:0.900000px;}
.ls1a{letter-spacing:1.021753px;}
.ls1c{letter-spacing:1.080000px;}
.ls14{letter-spacing:1.620000px;}
.ls11{letter-spacing:5.400000px;}
.ls8{letter-spacing:11.700000px;}
.ls9{letter-spacing:12.060000px;}
.ls13{letter-spacing:13.140000px;}
.ls22{letter-spacing:16.020000px;}
.ls12{letter-spacing:20.340000px;}
.ls23{letter-spacing:22.986720px;}
.ls15{letter-spacing:24.660000px;}
.ls19{letter-spacing:166.661190px;}
.ls1e{letter-spacing:186.072960px;}
.ls1f{letter-spacing:226.512960px;}
.ls6{letter-spacing:376.716000px;}
.ls2{letter-spacing:1424.045280px;}
.ls7{letter-spacing:1976.888640px;}
.ls0{letter-spacing:2146.236000px;}
.ls3{letter-spacing:2169.276000px;}
.lsa{letter-spacing:2388.360000px;}
.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;}
}
.ws16{word-spacing:-239.660160px;}
.ws15{word-spacing:-199.220160px;}
.wse{word-spacing:-75.310650px;}
.ws1{word-spacing:-66.240000px;}
.ws9{word-spacing:-59.760000px;}
.ws5{word-spacing:-20.016000px;}
.ws2{word-spacing:-18.305520px;}
.wsa{word-spacing:-16.613280px;}
.ws0{word-spacing:-16.506480px;}
.wsc{word-spacing:-15.714000px;}
.ws7{word-spacing:-15.300000px;}
.ws17{word-spacing:-15.246600px;}
.wsb{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.ws18{word-spacing:-14.719800px;}
.ws6{word-spacing:-13.868760px;}
.ws13{word-spacing:-13.147200px;}
.ws14{word-spacing:-13.049400px;}
.ws3{word-spacing:-9.720000px;}
.ws11{word-spacing:-1.059909px;}
.ws10{word-spacing:-0.053418px;}
.ws8{word-spacing:0.000000px;}
.wsf{word-spacing:55.632958px;}
.ws12{word-spacing:74.222476px;}
.wsd{word-spacing:274.657415px;}
._1f{margin-left:-186.132960px;}
._1d{margin-left:-140.104166px;}
._1e{margin-left:-127.732342px;}
._20{margin-left:-16.200000px;}
._26{margin-left:-7.433280px;}
._c{margin-left:-2.868480px;}
._3{margin-left:-1.180800px;}
._0{width:1.254960px;}
._1{width:2.546160px;}
._e{width:4.179120px;}
._13{width:5.220000px;}
._17{width:6.503520px;}
._18{width:8.077200px;}
._19{width:9.363120px;}
._1a{width:11.175120px;}
._b{width:12.370320px;}
._d{width:13.565520px;}
._1c{width:16.352160px;}
._1b{width:17.355840px;}
._16{width:18.844320px;}
._14{width:20.318400px;}
._15{width:22.307760px;}
._7{width:23.421600px;}
._6{width:25.380000px;}
._5{width:29.916000px;}
._4{width:31.212000px;}
._25{width:38.485440px;}
._22{width:43.744320px;}
._11{width:58.715280px;}
._10{width:60.737040px;}
._12{width:62.084880px;}
._f{width:63.095760px;}
._23{width:74.042640px;}
._27{width:78.762000px;}
._24{width:90.775440px;}
._21{width:129.201120px;}
._28{width:133.085520px;}
._8{width:372.069840px;}
._2{width:424.945440px;}
._a{width:561.756720px;}
._9{width:1997.751600px;}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(0,32,96);}
.fc1{color:rgb(77,77,77);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:38.155718px;}
.fs3{font-size:38.880000px;}
.fs5{font-size:51.120000px;}
.fs9{font-size:53.418155px;}
.fs0{font-size:59.760000px;}
.fsd{font-size:59.904000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fsa{font-size:91.574624px;}
.fs7{font-size:96.660851px;}
.fsc{font-size:99.298510px;}
.fs2{font-size:108.000000px;}
.fs8{font-size:137.177870px;}
.y0{bottom:0.000000px;}
.yff{bottom:3.600000px;}
.yfd{bottom:3.780000px;}
.y10d{bottom:3.960000px;}
.y10e{bottom:4.320000px;}
.yfb{bottom:4.500000px;}
.y90{bottom:6.750708px;}
.y107{bottom:10.665000px;}
.y110{bottom:10.980000px;}
.y94{bottom:15.630757px;}
.yf3{bottom:19.695000px;}
.yeb{bottom:19.800000px;}
.yfe{bottom:20.880000px;}
.yfa{bottom:21.600000px;}
.y8f{bottom:23.288083px;}
.y97{bottom:24.873303px;}
.yef{bottom:25.560000px;}
.ye5{bottom:25.665000px;}
.ye9{bottom:25.710000px;}
.ye7{bottom:25.770000px;}
.y106{bottom:27.945000px;}
.y10f{bottom:28.260000px;}
.y92{bottom:28.588427px;}
.y103{bottom:29.385000px;}
.y10b{bottom:30.600000px;}
.y95{bottom:38.511077px;}
.y96{bottom:38.781541px;}
.yf9{bottom:38.880000px;}
.y91{bottom:41.818627px;}
.y8e{bottom:41.953859px;}
.y102{bottom:46.665000px;}
.y10a{bottom:47.700000px;}
.y99{bottom:47.753811px;}
.y98{bottom:51.331825px;}
.y93{bottom:51.739399px;}
.y1{bottom:58.860000px;}
.y101{bottom:63.945000px;}
.y109{bottom:64.980000px;}
.yf5{bottom:113.685000px;}
.yed{bottom:113.835000px;}
.ye3{bottom:114.120000px;}
.y65{bottom:120.600000px;}
.yca{bottom:123.120000px;}
.yc3{bottom:123.480000px;}
.ye2{bottom:131.760000px;}
.y138{bottom:135.900000px;}
.y64{bottom:137.880000px;}
.yab{bottom:139.860000px;}
.yf4{bottom:140.115000px;}
.yec{bottom:140.220000px;}
.yc9{bottom:140.400000px;}
.yc2{bottom:140.760000px;}
.y137{bottom:153.180000px;}
.y63{bottom:155.160000px;}
.yaa{bottom:157.140000px;}
.yc8{bottom:157.680000px;}
.yc1{bottom:158.040000px;}
.ye1{bottom:160.920000px;}
.yf2{bottom:161.100000px;}
.y14f{bottom:165.240000px;}
.y2d{bottom:165.960000px;}
.y136{bottom:170.460000px;}
.y62{bottom:172.260000px;}
.ya9{bottom:174.420000px;}
.yc7{bottom:174.960000px;}
.yc0{bottom:175.320000px;}
.y2c{bottom:183.240000px;}
.y14e{bottom:183.780000px;}
.y135{bottom:187.560000px;}
.y61{bottom:189.540000px;}
.ya8{bottom:191.700000px;}
.yc6{bottom:192.240000px;}
.ybf{bottom:192.600000px;}
.y2b{bottom:193.680000px;}
.yee{bottom:198.360000px;}
.y14d{bottom:202.500000px;}
.y134{bottom:204.840000px;}
.y60{bottom:206.850000px;}
.ya7{bottom:209.010000px;}
.yc5{bottom:209.370000px;}
.ybe{bottom:209.730000px;}
.y2a{bottom:217.830000px;}
.y14c{bottom:221.070000px;}
.y133{bottom:222.150000px;}
.y5f{bottom:224.130000px;}
.ya6{bottom:226.110000px;}
.ybd{bottom:227.010000px;}
.y29{bottom:235.110000px;}
.yf0{bottom:238.140000px;}
.y132{bottom:239.430000px;}
.y14b{bottom:239.790000px;}
.y5e{bottom:241.410000px;}
.ya5{bottom:243.390000px;}
.ybc{bottom:244.290000px;}
.y28{bottom:245.550000px;}
.y131{bottom:256.710000px;}
.y14a{bottom:258.510000px;}
.y5d{bottom:258.690000px;}
.ya4{bottom:260.670000px;}
.ybb{bottom:261.570000px;}
.y27{bottom:269.490000px;}
.y130{bottom:273.990000px;}
.y5c{bottom:275.790000px;}
.y149{bottom:277.050000px;}
.ya3{bottom:277.950000px;}
.yf1{bottom:278.100000px;}
.yba{bottom:278.850000px;}
.y26{bottom:282.810000px;}
.y12f{bottom:291.090000px;}
.y5b{bottom:293.070000px;}
.ya2{bottom:295.230000px;}
.y148{bottom:295.770000px;}
.yb9{bottom:296.130000px;}
.y12e{bottom:308.370000px;}
.y5a{bottom:310.350000px;}
.ya1{bottom:312.510000px;}
.yb8{bottom:313.230000px;}
.y147{bottom:314.310000px;}
.y25{bottom:323.310000px;}
.y12d{bottom:325.650000px;}
.y59{bottom:327.630000px;}
.ya0{bottom:329.610000px;}
.yb7{bottom:330.510000px;}
.y146{bottom:333.030000px;}
.y24{bottom:340.410000px;}
.y12c{bottom:342.930000px;}
.y58{bottom:344.910000px;}
.y9f{bottom:346.890000px;}
.yb6{bottom:347.790000px;}
.y145{bottom:351.570000px;}
.y23{bottom:357.690000px;}
.y12b{bottom:360.210000px;}
.y57{bottom:362.190000px;}
.y9e{bottom:364.170000px;}
.yb5{bottom:365.070000px;}
.y144{bottom:370.290000px;}
.y22{bottom:374.970000px;}
.y12a{bottom:377.490000px;}
.y56{bottom:379.290000px;}
.y9d{bottom:381.450000px;}
.yb4{bottom:382.350000px;}
.y143{bottom:388.830000px;}
.y129{bottom:394.590000px;}
.y21{bottom:394.770000px;}
.y55{bottom:396.570000px;}
.y9c{bottom:398.370000px;}
.yb3{bottom:399.630000px;}
.y142{bottom:407.550000px;}
.y128{bottom:411.870000px;}
.y54{bottom:413.850000px;}
.y9b{bottom:415.470000px;}
.yb2{bottom:416.730000px;}
.y141{bottom:426.270000px;}
.ye0{bottom:428.070000px;}
.y127{bottom:429.150000px;}
.y20{bottom:429.870000px;}
.y8d{bottom:430.815000px;}
.y53{bottom:431.130000px;}
.y9a{bottom:433.110000px;}
.yb1{bottom:434.010000px;}
.y140{bottom:444.855000px;}
.ydf{bottom:445.755000px;}
.y126{bottom:446.475000px;}
.y1f{bottom:446.655000px;}
.y52{bottom:448.455000px;}
.yb0{bottom:451.335000px;}
.yde{bottom:462.855000px;}
.y13f{bottom:463.575000px;}
.y125{bottom:463.755000px;}
.y51{bottom:465.555000px;}
.yaf{bottom:468.615000px;}
.ydd{bottom:480.135000px;}
.y1e{bottom:480.495000px;}
.y124{bottom:481.035000px;}
.y13e{bottom:482.115000px;}
.y50{bottom:482.835000px;}
.yae{bottom:485.895000px;}
.y1d{bottom:497.235000px;}
.ydc{bottom:497.415000px;}
.y123{bottom:498.135000px;}
.y4f{bottom:500.115000px;}
.y13d{bottom:500.835000px;}
.y8c{bottom:502.995000px;}
.ydb{bottom:514.695000px;}
.y122{bottom:515.415000px;}
.y4e{bottom:517.035000px;}
.y13c{bottom:519.375000px;}
.y8b{bottom:520.275000px;}
.y1c{bottom:531.075000px;}
.yda{bottom:531.975000px;}
.y121{bottom:532.695000px;}
.y4d{bottom:534.675000px;}
.y13b{bottom:537.195000px;}
.y8a{bottom:537.555000px;}
.yd9{bottom:549.255000px;}
.y120{bottom:549.975000px;}
.y1b{bottom:550.335000px;}
.y4c{bottom:552.315000px;}
.yc4{bottom:554.475000px;}
.y89{bottom:554.835000px;}
.yd8{bottom:566.355000px;}
.y11f{bottom:567.255000px;}
.y4b{bottom:571.035000px;}
.y88{bottom:572.115000px;}
.y1a{bottom:573.015000px;}
.yd7{bottom:583.635000px;}
.y11e{bottom:584.355000px;}
.y87{bottom:589.395000px;}
.y4a{bottom:598.575000px;}
.yd6{bottom:600.915000px;}
.y11d{bottom:601.635000px;}
.y86{bottom:606.495000px;}
.y49{bottom:617.295000px;}
.yd5{bottom:618.195000px;}
.y11c{bottom:618.915000px;}
.y85{bottom:623.775000px;}
.yd4{bottom:635.475000px;}
.y11b{bottom:635.835000px;}
.y48{bottom:636.015000px;}
.y19{bottom:638.715000px;}
.y84{bottom:641.055000px;}
.yd3{bottom:652.575000px;}
.y11a{bottom:653.115000px;}
.y47{bottom:654.555000px;}
.y16a{bottom:655.815000px;}
.y18{bottom:655.995000px;}
.y83{bottom:658.335000px;}
.yd2{bottom:669.855000px;}
.y119{bottom:670.755000px;}
.y17{bottom:673.095000px;}
.y46{bottom:673.275000px;}
.y169{bottom:674.355000px;}
.y82{bottom:675.615000px;}
.yd1{bottom:687.165000px;}
.y118{bottom:687.885000px;}
.y16{bottom:690.405000px;}
.y45{bottom:691.845000px;}
.y81{bottom:692.925000px;}
.y168{bottom:693.105000px;}
.yd0{bottom:704.445000px;}
.y117{bottom:705.165000px;}
.y15{bottom:707.685000px;}
.y80{bottom:710.025000px;}
.y44{bottom:710.565000px;}
.y167{bottom:711.645000px;}
.ycf{bottom:721.725000px;}
.y116{bottom:722.445000px;}
.y14{bottom:724.965000px;}
.y7f{bottom:727.305000px;}
.y43{bottom:729.105000px;}
.y166{bottom:730.365000px;}
.yce{bottom:739.005000px;}
.y115{bottom:739.725000px;}
.y13{bottom:742.245000px;}
.y7e{bottom:744.585000px;}
.y42{bottom:747.825000px;}
.y165{bottom:748.905000px;}
.ycd{bottom:755.745000px;}
.y114{bottom:757.005000px;}
.y12{bottom:759.525000px;}
.y7d{bottom:761.865000px;}
.y41{bottom:766.365000px;}
.y164{bottom:767.625000px;}
.ycc{bottom:773.385000px;}
.y113{bottom:774.285000px;}
.y11{bottom:776.625000px;}
.y7c{bottom:779.145000px;}
.y40{bottom:785.085000px;}
.y163{bottom:786.165000px;}
.ycb{bottom:787.605000px;}
.yea{bottom:787.680000px;}
.y112{bottom:791.385000px;}
.y10{bottom:793.905000px;}
.y7b{bottom:796.245000px;}
.y3f{bottom:802.905000px;}
.y162{bottom:804.885000px;}
.y111{bottom:808.305000px;}
.yf{bottom:811.185000px;}
.y7a{bottom:813.525000px;}
.y3e{bottom:820.185000px;}
.y108{bottom:822.885000px;}
.y161{bottom:823.605000px;}
.ye4{bottom:824.940000px;}
.y79{bottom:830.445000px;}
.yad{bottom:830.805000px;}
.y3d{bottom:837.645000px;}
.y160{bottom:842.145000px;}
.ye{bottom:845.745000px;}
.y78{bottom:847.725000px;}
.yac{bottom:848.085000px;}
.y3c{bottom:854.925000px;}
.y15f{bottom:860.865000px;}
.ye6{bottom:864.720000px;}
.y77{bottom:865.365000px;}
.yd{bottom:865.545000px;}
.y3b{bottom:879.045000px;}
.y15e{bottom:879.405000px;}
.y76{bottom:882.645000px;}
.y10c{bottom:883.905000px;}
.y3a{bottom:896.325000px;}
.yc{bottom:896.685000px;}
.y15d{bottom:898.125000px;}
.y75{bottom:899.745000px;}
.y100{bottom:902.085000px;}
.ye8{bottom:904.680000px;}
.y39{bottom:906.765000px;}
.y15c{bottom:916.710000px;}
.y74{bottom:917.070000px;}
.yb{bottom:927.690000px;}
.y38{bottom:930.930000px;}
.y13a{bottom:933.990000px;}
.y73{bottom:934.350000px;}
.y15b{bottom:935.430000px;}
.y105{bottom:944.250000px;}
.y37{bottom:948.030000px;}
.y139{bottom:951.270000px;}
.y72{bottom:951.630000px;}
.y15a{bottom:953.970000px;}
.ya{bottom:956.130000px;}
.y36{bottom:958.470000px;}
.y104{bottom:962.250000px;}
.y71{bottom:968.910000px;}
.y159{bottom:972.690000px;}
.y9{bottom:973.410000px;}
.yf8{bottom:980.250000px;}
.y35{bottom:982.590000px;}
.y70{bottom:986.190000px;}
.y158{bottom:991.410000px;}
.y34{bottom:992.670000px;}
.y6f{bottom:1003.290000px;}
.y157{bottom:1009.950000px;}
.y33{bottom:1011.210000px;}
.yfc{bottom:1015.350000px;}
.y8{bottom:1015.710000px;}
.y6e{bottom:1020.570000px;}
.y156{bottom:1028.670000px;}
.y32{bottom:1035.330000px;}
.yf7{bottom:1036.770000px;}
.y6d{bottom:1037.850000px;}
.y155{bottom:1047.210000px;}
.yf6{bottom:1054.410000px;}
.y7{bottom:1054.770000px;}
.y6c{bottom:1055.130000px;}
.y31{bottom:1059.450000px;}
.y154{bottom:1065.930000px;}
.y6{bottom:1072.050000px;}
.y6b{bottom:1072.410000px;}
.y30{bottom:1082.670000px;}
.y153{bottom:1084.470000px;}
.y5{bottom:1089.330000px;}
.y6a{bottom:1089.690000px;}
.y2f{bottom:1101.570000px;}
.y152{bottom:1103.190000px;}
.y4{bottom:1106.430000px;}
.y69{bottom:1106.790000px;}
.y2e{bottom:1119.030000px;}
.y151{bottom:1121.730000px;}
.y3{bottom:1123.710000px;}
.y68{bottom:1124.070000px;}
.y150{bottom:1140.450000px;}
.y2{bottom:1140.990000px;}
.y67{bottom:1141.350000px;}
.y66{bottom:1172.880000px;}
.h26{height:17.280000px;}
.h2b{height:17.460000px;}
.h2c{height:17.820000px;}
.h27{height:34.380000px;}
.h1b{height:37.429119px;}
.h1d{height:37.447750px;}
.hc{height:39.183750px;}
.h17{height:39.568038px;}
.h20{height:39.960000px;}
.h29{height:41.436000px;}
.h2d{height:41.760000px;}
.hf{height:43.506914px;}
.h1f{height:50.597578px;}
.h21{height:50.719500px;}
.ha{height:50.845430px;}
.h11{height:52.319180px;}
.h25{height:52.380000px;}
.h19{height:52.400915px;}
.h1c{height:52.426998px;}
.h9{height:53.316562px;}
.h10{height:54.099141px;}
.hd{height:58.651172px;}
.h3{height:60.226875px;}
.h2{height:62.327813px;}
.h13{height:65.518594px;}
.h12{height:65.884219px;}
.h6{height:66.543750px;}
.h14{height:66.599897px;}
.hb{height:66.757500px;}
.h8{height:67.824844px;}
.h18{height:67.831398px;}
.h4{height:69.086250px;}
.h15{height:71.598882px;}
.h1e{height:73.552656px;}
.h7{height:75.093750px;}
.h28{height:77.436000px;}
.h2a{height:78.480000px;}
.he{height:84.898125px;}
.h1a{height:101.150559px;}
.h16{height:101.610756px;}
.h5{height:108.843750px;}
.h24{height:128.160000px;}
.h23{height:154.440000px;}
.h22{height:263.700000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:84.276000px;}
.wc{width:94.860000px;}
.wd{width:95.076000px;}
.w9{width:103.140000px;}
.w7{width:107.100000px;}
.w3{width:120.600000px;}
.w5{width:141.840000px;}
.w8{width:145.620000px;}
.w4{width:160.920000px;}
.w2{width:216.000088px;}
.wb{width:318.315000px;}
.wa{width:594.690000px;}
.w6{width:684.900000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:5.200050px;}
.x2a{left:7.740000px;}
.x23{left:9.030000px;}
.x18{left:24.972433px;}
.x11{left:42.686345px;}
.xe{left:64.743083px;}
.x12{left:69.199324px;}
.xf{left:75.144128px;}
.x17{left:83.371398px;}
.x29{left:97.236000px;}
.x14{left:104.858701px;}
.x1{left:108.036000px;}
.x13{left:110.914558px;}
.x24{left:115.740000px;}
.x20{left:117.756000px;}
.x27{left:122.076000px;}
.x2e{left:129.276000px;}
.xd{left:135.485315px;}
.x22{left:156.060000px;}
.x2{left:161.130000px;}
.x10{left:163.200959px;}
.x25{left:169.485000px;}
.x15{left:174.058025px;}
.x19{left:175.544226px;}
.x16{left:186.058686px;}
.x1b{left:187.601594px;}
.x1a{left:201.086094px;}
.xa{left:224.490000px;}
.x1f{left:286.815000px;}
.x21{left:301.935000px;}
.x1d{left:324.075000px;}
.x8{left:349.995000px;}
.xc{left:358.995000px;}
.x28{left:380.235000px;}
.xb{left:387.255000px;}
.x2b{left:520.125000px;}
.x2c{left:615.705000px;}
.x6{left:633.210000px;}
.x26{left:640.800000px;}
.x4{left:657.330000px;}
.x7{left:670.650000px;}
.x5{left:688.110000px;}
.x2d{left:711.510000px;}
.x9{left:783.150000px;}
.x3{left:785.130000px;}
.x1e{left:792.900000px;}
@media print{
.v6{vertical-align:-78.720000pt;}
.v2{vertical-align:-77.440000pt;}
.v5{vertical-align:-71.680000pt;}
.v1{vertical-align:-65.920000pt;}
.v3{vertical-align:-61.440000pt;}
.v7{vertical-align:-60.160000pt;}
.v8{vertical-align:-24.320000pt;}
.va{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:24.320000pt;}
.v9{vertical-align:43.333017pt;}
.ls10{letter-spacing:-0.304533pt;}
.ls26{letter-spacing:-0.195733pt;}
.lse{letter-spacing:-0.097067pt;}
.lsd{letter-spacing:-0.094933pt;}
.ls20{letter-spacing:-0.086933pt;}
.lsc{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.011520pt;}
.ls16{letter-spacing:0.047360pt;}
.ls18{letter-spacing:0.094720pt;}
.ls5{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.167467pt;}
.ls24{letter-spacing:0.231040pt;}
.ls1{letter-spacing:0.271360pt;}
.ls25{letter-spacing:0.272533pt;}
.lsb{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.640000pt;}
.ls17{letter-spacing:0.688000pt;}
.ls1d{letter-spacing:0.736000pt;}
.ls1b{letter-spacing:0.800000pt;}
.ls1a{letter-spacing:0.908225pt;}
.ls1c{letter-spacing:0.960000pt;}
.ls14{letter-spacing:1.440000pt;}
.ls11{letter-spacing:4.800000pt;}
.ls8{letter-spacing:10.400000pt;}
.ls9{letter-spacing:10.720000pt;}
.ls13{letter-spacing:11.680000pt;}
.ls22{letter-spacing:14.240000pt;}
.ls12{letter-spacing:18.080000pt;}
.ls23{letter-spacing:20.432640pt;}
.ls15{letter-spacing:21.920000pt;}
.ls19{letter-spacing:148.143280pt;}
.ls1e{letter-spacing:165.398187pt;}
.ls1f{letter-spacing:201.344853pt;}
.ls6{letter-spacing:334.858667pt;}
.ls2{letter-spacing:1265.818027pt;}
.ls7{letter-spacing:1757.234347pt;}
.ls0{letter-spacing:1907.765333pt;}
.ls3{letter-spacing:1928.245333pt;}
.lsa{letter-spacing:2122.986667pt;}
.ws16{word-spacing:-213.031253pt;}
.ws15{word-spacing:-177.084587pt;}
.wse{word-spacing:-66.942800pt;}
.ws1{word-spacing:-58.880000pt;}
.ws9{word-spacing:-53.120000pt;}
.ws5{word-spacing:-17.792000pt;}
.ws2{word-spacing:-16.271573pt;}
.wsa{word-spacing:-14.767360pt;}
.ws0{word-spacing:-14.672427pt;}
.wsc{word-spacing:-13.968000pt;}
.ws7{word-spacing:-13.600000pt;}
.ws17{word-spacing:-13.552533pt;}
.wsb{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.ws18{word-spacing:-13.084267pt;}
.ws6{word-spacing:-12.327787pt;}
.ws13{word-spacing:-11.686400pt;}
.ws14{word-spacing:-11.599467pt;}
.ws3{word-spacing:-8.640000pt;}
.ws11{word-spacing:-0.942141pt;}
.ws10{word-spacing:-0.047483pt;}
.ws8{word-spacing:0.000000pt;}
.wsf{word-spacing:49.451518pt;}
.ws12{word-spacing:65.975534pt;}
.wsd{word-spacing:244.139924pt;}
._1f{margin-left:-165.451520pt;}
._1d{margin-left:-124.537037pt;}
._1e{margin-left:-113.539860pt;}
._20{margin-left:-14.400000pt;}
._26{margin-left:-6.607360pt;}
._c{margin-left:-2.549760pt;}
._3{margin-left:-1.049600pt;}
._0{width:1.115520pt;}
._1{width:2.263253pt;}
._e{width:3.714773pt;}
._13{width:4.640000pt;}
._17{width:5.780907pt;}
._18{width:7.179733pt;}
._19{width:8.322773pt;}
._1a{width:9.933440pt;}
._b{width:10.995840pt;}
._d{width:12.058240pt;}
._1c{width:14.535253pt;}
._1b{width:15.427413pt;}
._16{width:16.750507pt;}
._14{width:18.060800pt;}
._15{width:19.829120pt;}
._7{width:20.819200pt;}
._6{width:22.560000pt;}
._5{width:26.592000pt;}
._4{width:27.744000pt;}
._25{width:34.209280pt;}
._22{width:38.883840pt;}
._11{width:52.191360pt;}
._10{width:53.988480pt;}
._12{width:55.186560pt;}
._f{width:56.085120pt;}
._23{width:65.815680pt;}
._27{width:70.010667pt;}
._24{width:80.689280pt;}
._21{width:114.845440pt;}
._28{width:118.298240pt;}
._8{width:330.728747pt;}
._2{width:377.729280pt;}
._a{width:499.339307pt;}
._9{width:1775.779200pt;}
.fsb{font-size:33.916193pt;}
.fs3{font-size:34.560000pt;}
.fs5{font-size:45.440000pt;}
.fs9{font-size:47.482804pt;}
.fs0{font-size:53.120000pt;}
.fsd{font-size:53.248000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fsa{font-size:81.399665pt;}
.fs7{font-size:85.920756pt;}
.fsc{font-size:88.265342pt;}
.fs2{font-size:96.000000pt;}
.fs8{font-size:121.935884pt;}
.y0{bottom:0.000000pt;}
.yff{bottom:3.200000pt;}
.yfd{bottom:3.360000pt;}
.y10d{bottom:3.520000pt;}
.y10e{bottom:3.840000pt;}
.yfb{bottom:4.000000pt;}
.y90{bottom:6.000629pt;}
.y107{bottom:9.480000pt;}
.y110{bottom:9.760000pt;}
.y94{bottom:13.894006pt;}
.yf3{bottom:17.506667pt;}
.yeb{bottom:17.600000pt;}
.yfe{bottom:18.560000pt;}
.yfa{bottom:19.200000pt;}
.y8f{bottom:20.700518pt;}
.y97{bottom:22.109602pt;}
.yef{bottom:22.720000pt;}
.ye5{bottom:22.813333pt;}
.ye9{bottom:22.853333pt;}
.ye7{bottom:22.906667pt;}
.y106{bottom:24.840000pt;}
.y10f{bottom:25.120000pt;}
.y92{bottom:25.411935pt;}
.y103{bottom:26.120000pt;}
.y10b{bottom:27.200000pt;}
.y95{bottom:34.232069pt;}
.y96{bottom:34.472481pt;}
.yf9{bottom:34.560000pt;}
.y91{bottom:37.172113pt;}
.y8e{bottom:37.292319pt;}
.y102{bottom:41.480000pt;}
.y10a{bottom:42.400000pt;}
.y99{bottom:42.447832pt;}
.y98{bottom:45.628289pt;}
.y93{bottom:45.990577pt;}
.y1{bottom:52.320000pt;}
.y101{bottom:56.840000pt;}
.y109{bottom:57.760000pt;}
.yf5{bottom:101.053333pt;}
.yed{bottom:101.186667pt;}
.ye3{bottom:101.440000pt;}
.y65{bottom:107.200000pt;}
.yca{bottom:109.440000pt;}
.yc3{bottom:109.760000pt;}
.ye2{bottom:117.120000pt;}
.y138{bottom:120.800000pt;}
.y64{bottom:122.560000pt;}
.yab{bottom:124.320000pt;}
.yf4{bottom:124.546667pt;}
.yec{bottom:124.640000pt;}
.yc9{bottom:124.800000pt;}
.yc2{bottom:125.120000pt;}
.y137{bottom:136.160000pt;}
.y63{bottom:137.920000pt;}
.yaa{bottom:139.680000pt;}
.yc8{bottom:140.160000pt;}
.yc1{bottom:140.480000pt;}
.ye1{bottom:143.040000pt;}
.yf2{bottom:143.200000pt;}
.y14f{bottom:146.880000pt;}
.y2d{bottom:147.520000pt;}
.y136{bottom:151.520000pt;}
.y62{bottom:153.120000pt;}
.ya9{bottom:155.040000pt;}
.yc7{bottom:155.520000pt;}
.yc0{bottom:155.840000pt;}
.y2c{bottom:162.880000pt;}
.y14e{bottom:163.360000pt;}
.y135{bottom:166.720000pt;}
.y61{bottom:168.480000pt;}
.ya8{bottom:170.400000pt;}
.yc6{bottom:170.880000pt;}
.ybf{bottom:171.200000pt;}
.y2b{bottom:172.160000pt;}
.yee{bottom:176.320000pt;}
.y14d{bottom:180.000000pt;}
.y134{bottom:182.080000pt;}
.y60{bottom:183.866667pt;}
.ya7{bottom:185.786667pt;}
.yc5{bottom:186.106667pt;}
.ybe{bottom:186.426667pt;}
.y2a{bottom:193.626667pt;}
.y14c{bottom:196.506667pt;}
.y133{bottom:197.466667pt;}
.y5f{bottom:199.226667pt;}
.ya6{bottom:200.986667pt;}
.ybd{bottom:201.786667pt;}
.y29{bottom:208.986667pt;}
.yf0{bottom:211.680000pt;}
.y132{bottom:212.826667pt;}
.y14b{bottom:213.146667pt;}
.y5e{bottom:214.586667pt;}
.ya5{bottom:216.346667pt;}
.ybc{bottom:217.146667pt;}
.y28{bottom:218.266667pt;}
.y131{bottom:228.186667pt;}
.y14a{bottom:229.786667pt;}
.y5d{bottom:229.946667pt;}
.ya4{bottom:231.706667pt;}
.ybb{bottom:232.506667pt;}
.y27{bottom:239.546667pt;}
.y130{bottom:243.546667pt;}
.y5c{bottom:245.146667pt;}
.y149{bottom:246.266667pt;}
.ya3{bottom:247.066667pt;}
.yf1{bottom:247.200000pt;}
.yba{bottom:247.866667pt;}
.y26{bottom:251.386667pt;}
.y12f{bottom:258.746667pt;}
.y5b{bottom:260.506667pt;}
.ya2{bottom:262.426667pt;}
.y148{bottom:262.906667pt;}
.yb9{bottom:263.226667pt;}
.y12e{bottom:274.106667pt;}
.y5a{bottom:275.866667pt;}
.ya1{bottom:277.786667pt;}
.yb8{bottom:278.426667pt;}
.y147{bottom:279.386667pt;}
.y25{bottom:287.386667pt;}
.y12d{bottom:289.466667pt;}
.y59{bottom:291.226667pt;}
.ya0{bottom:292.986667pt;}
.yb7{bottom:293.786667pt;}
.y146{bottom:296.026667pt;}
.y24{bottom:302.586667pt;}
.y12c{bottom:304.826667pt;}
.y58{bottom:306.586667pt;}
.y9f{bottom:308.346667pt;}
.yb6{bottom:309.146667pt;}
.y145{bottom:312.506667pt;}
.y23{bottom:317.946667pt;}
.y12b{bottom:320.186667pt;}
.y57{bottom:321.946667pt;}
.y9e{bottom:323.706667pt;}
.yb5{bottom:324.506667pt;}
.y144{bottom:329.146667pt;}
.y22{bottom:333.306667pt;}
.y12a{bottom:335.546667pt;}
.y56{bottom:337.146667pt;}
.y9d{bottom:339.066667pt;}
.yb4{bottom:339.866667pt;}
.y143{bottom:345.626667pt;}
.y129{bottom:350.746667pt;}
.y21{bottom:350.906667pt;}
.y55{bottom:352.506667pt;}
.y9c{bottom:354.106667pt;}
.yb3{bottom:355.226667pt;}
.y142{bottom:362.266667pt;}
.y128{bottom:366.106667pt;}
.y54{bottom:367.866667pt;}
.y9b{bottom:369.306667pt;}
.yb2{bottom:370.426667pt;}
.y141{bottom:378.906667pt;}
.ye0{bottom:380.506667pt;}
.y127{bottom:381.466667pt;}
.y20{bottom:382.106667pt;}
.y8d{bottom:382.946667pt;}
.y53{bottom:383.226667pt;}
.y9a{bottom:384.986667pt;}
.yb1{bottom:385.786667pt;}
.y140{bottom:395.426667pt;}
.ydf{bottom:396.226667pt;}
.y126{bottom:396.866667pt;}
.y1f{bottom:397.026667pt;}
.y52{bottom:398.626667pt;}
.yb0{bottom:401.186667pt;}
.yde{bottom:411.426667pt;}
.y13f{bottom:412.066667pt;}
.y125{bottom:412.226667pt;}
.y51{bottom:413.826667pt;}
.yaf{bottom:416.546667pt;}
.ydd{bottom:426.786667pt;}
.y1e{bottom:427.106667pt;}
.y124{bottom:427.586667pt;}
.y13e{bottom:428.546667pt;}
.y50{bottom:429.186667pt;}
.yae{bottom:431.906667pt;}
.y1d{bottom:441.986667pt;}
.ydc{bottom:442.146667pt;}
.y123{bottom:442.786667pt;}
.y4f{bottom:444.546667pt;}
.y13d{bottom:445.186667pt;}
.y8c{bottom:447.106667pt;}
.ydb{bottom:457.506667pt;}
.y122{bottom:458.146667pt;}
.y4e{bottom:459.586667pt;}
.y13c{bottom:461.666667pt;}
.y8b{bottom:462.466667pt;}
.y1c{bottom:472.066667pt;}
.yda{bottom:472.866667pt;}
.y121{bottom:473.506667pt;}
.y4d{bottom:475.266667pt;}
.y13b{bottom:477.506667pt;}
.y8a{bottom:477.826667pt;}
.yd9{bottom:488.226667pt;}
.y120{bottom:488.866667pt;}
.y1b{bottom:489.186667pt;}
.y4c{bottom:490.946667pt;}
.yc4{bottom:492.866667pt;}
.y89{bottom:493.186667pt;}
.yd8{bottom:503.426667pt;}
.y11f{bottom:504.226667pt;}
.y4b{bottom:507.586667pt;}
.y88{bottom:508.546667pt;}
.y1a{bottom:509.346667pt;}
.yd7{bottom:518.786667pt;}
.y11e{bottom:519.426667pt;}
.y87{bottom:523.906667pt;}
.y4a{bottom:532.066667pt;}
.yd6{bottom:534.146667pt;}
.y11d{bottom:534.786667pt;}
.y86{bottom:539.106667pt;}
.y49{bottom:548.706667pt;}
.yd5{bottom:549.506667pt;}
.y11c{bottom:550.146667pt;}
.y85{bottom:554.466667pt;}
.yd4{bottom:564.866667pt;}
.y11b{bottom:565.186667pt;}
.y48{bottom:565.346667pt;}
.y19{bottom:567.746667pt;}
.y84{bottom:569.826667pt;}
.yd3{bottom:580.066667pt;}
.y11a{bottom:580.546667pt;}
.y47{bottom:581.826667pt;}
.y16a{bottom:582.946667pt;}
.y18{bottom:583.106667pt;}
.y83{bottom:585.186667pt;}
.yd2{bottom:595.426667pt;}
.y119{bottom:596.226667pt;}
.y17{bottom:598.306667pt;}
.y46{bottom:598.466667pt;}
.y169{bottom:599.426667pt;}
.y82{bottom:600.546667pt;}
.yd1{bottom:610.813333pt;}
.y118{bottom:611.453333pt;}
.y16{bottom:613.693333pt;}
.y45{bottom:614.973333pt;}
.y81{bottom:615.933333pt;}
.y168{bottom:616.093333pt;}
.yd0{bottom:626.173333pt;}
.y117{bottom:626.813333pt;}
.y15{bottom:629.053333pt;}
.y80{bottom:631.133333pt;}
.y44{bottom:631.613333pt;}
.y167{bottom:632.573333pt;}
.ycf{bottom:641.533333pt;}
.y116{bottom:642.173333pt;}
.y14{bottom:644.413333pt;}
.y7f{bottom:646.493333pt;}
.y43{bottom:648.093333pt;}
.y166{bottom:649.213333pt;}
.yce{bottom:656.893333pt;}
.y115{bottom:657.533333pt;}
.y13{bottom:659.773333pt;}
.y7e{bottom:661.853333pt;}
.y42{bottom:664.733333pt;}
.y165{bottom:665.693333pt;}
.ycd{bottom:671.773333pt;}
.y114{bottom:672.893333pt;}
.y12{bottom:675.133333pt;}
.y7d{bottom:677.213333pt;}
.y41{bottom:681.213333pt;}
.y164{bottom:682.333333pt;}
.ycc{bottom:687.453333pt;}
.y113{bottom:688.253333pt;}
.y11{bottom:690.333333pt;}
.y7c{bottom:692.573333pt;}
.y40{bottom:697.853333pt;}
.y163{bottom:698.813333pt;}
.ycb{bottom:700.093333pt;}
.yea{bottom:700.160000pt;}
.y112{bottom:703.453333pt;}
.y10{bottom:705.693333pt;}
.y7b{bottom:707.773333pt;}
.y3f{bottom:713.693333pt;}
.y162{bottom:715.453333pt;}
.y111{bottom:718.493333pt;}
.yf{bottom:721.053333pt;}
.y7a{bottom:723.133333pt;}
.y3e{bottom:729.053333pt;}
.y108{bottom:731.453333pt;}
.y161{bottom:732.093333pt;}
.ye4{bottom:733.280000pt;}
.y79{bottom:738.173333pt;}
.yad{bottom:738.493333pt;}
.y3d{bottom:744.573333pt;}
.y160{bottom:748.573333pt;}
.ye{bottom:751.773333pt;}
.y78{bottom:753.533333pt;}
.yac{bottom:753.853333pt;}
.y3c{bottom:759.933333pt;}
.y15f{bottom:765.213333pt;}
.ye6{bottom:768.640000pt;}
.y77{bottom:769.213333pt;}
.yd{bottom:769.373333pt;}
.y3b{bottom:781.373333pt;}
.y15e{bottom:781.693333pt;}
.y76{bottom:784.573333pt;}
.y10c{bottom:785.693333pt;}
.y3a{bottom:796.733333pt;}
.yc{bottom:797.053333pt;}
.y15d{bottom:798.333333pt;}
.y75{bottom:799.773333pt;}
.y100{bottom:801.853333pt;}
.ye8{bottom:804.160000pt;}
.y39{bottom:806.013333pt;}
.y15c{bottom:814.853333pt;}
.y74{bottom:815.173333pt;}
.yb{bottom:824.613333pt;}
.y38{bottom:827.493333pt;}
.y13a{bottom:830.213333pt;}
.y73{bottom:830.533333pt;}
.y15b{bottom:831.493333pt;}
.y105{bottom:839.333333pt;}
.y37{bottom:842.693333pt;}
.y139{bottom:845.573333pt;}
.y72{bottom:845.893333pt;}
.y15a{bottom:847.973333pt;}
.ya{bottom:849.893333pt;}
.y36{bottom:851.973333pt;}
.y104{bottom:855.333333pt;}
.y71{bottom:861.253333pt;}
.y159{bottom:864.613333pt;}
.y9{bottom:865.253333pt;}
.yf8{bottom:871.333333pt;}
.y35{bottom:873.413333pt;}
.y70{bottom:876.613333pt;}
.y158{bottom:881.253333pt;}
.y34{bottom:882.373333pt;}
.y6f{bottom:891.813333pt;}
.y157{bottom:897.733333pt;}
.y33{bottom:898.853333pt;}
.yfc{bottom:902.533333pt;}
.y8{bottom:902.853333pt;}
.y6e{bottom:907.173333pt;}
.y156{bottom:914.373333pt;}
.y32{bottom:920.293333pt;}
.yf7{bottom:921.573333pt;}
.y6d{bottom:922.533333pt;}
.y155{bottom:930.853333pt;}
.yf6{bottom:937.253333pt;}
.y7{bottom:937.573333pt;}
.y6c{bottom:937.893333pt;}
.y31{bottom:941.733333pt;}
.y154{bottom:947.493333pt;}
.y6{bottom:952.933333pt;}
.y6b{bottom:953.253333pt;}
.y30{bottom:962.373333pt;}
.y153{bottom:963.973333pt;}
.y5{bottom:968.293333pt;}
.y6a{bottom:968.613333pt;}
.y2f{bottom:979.173333pt;}
.y152{bottom:980.613333pt;}
.y4{bottom:983.493333pt;}
.y69{bottom:983.813333pt;}
.y2e{bottom:994.693333pt;}
.y151{bottom:997.093333pt;}
.y3{bottom:998.853333pt;}
.y68{bottom:999.173333pt;}
.y150{bottom:1013.733333pt;}
.y2{bottom:1014.213333pt;}
.y67{bottom:1014.533333pt;}
.y66{bottom:1042.560000pt;}
.h26{height:15.360000pt;}
.h2b{height:15.520000pt;}
.h2c{height:15.840000pt;}
.h27{height:30.560000pt;}
.h1b{height:33.270328pt;}
.h1d{height:33.286889pt;}
.hc{height:34.830000pt;}
.h17{height:35.171589pt;}
.h20{height:35.520000pt;}
.h29{height:36.832000pt;}
.h2d{height:37.120000pt;}
.hf{height:38.672812pt;}
.h1f{height:44.975625pt;}
.h21{height:45.084000pt;}
.ha{height:45.195937pt;}
.h11{height:46.505938pt;}
.h25{height:46.560000pt;}
.h19{height:46.578591pt;}
.h1c{height:46.601776pt;}
.h9{height:47.392500pt;}
.h10{height:48.088125pt;}
.hd{height:52.134375pt;}
.h3{height:53.535000pt;}
.h2{height:55.402500pt;}
.h13{height:58.238750pt;}
.h12{height:58.563750pt;}
.h6{height:59.150000pt;}
.h14{height:59.199908pt;}
.hb{height:59.340000pt;}
.h8{height:60.288750pt;}
.h18{height:60.294576pt;}
.h4{height:61.410000pt;}
.h15{height:63.643451pt;}
.h1e{height:65.380139pt;}
.h7{height:66.750000pt;}
.h28{height:68.832000pt;}
.h2a{height:69.760000pt;}
.he{height:75.465000pt;}
.h1a{height:89.911608pt;}
.h16{height:90.320672pt;}
.h5{height:96.750000pt;}
.h24{height:113.920000pt;}
.h23{height:137.280000pt;}
.h22{height:234.400000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:74.912000pt;}
.wc{width:84.320000pt;}
.wd{width:84.512000pt;}
.w9{width:91.680000pt;}
.w7{width:95.200000pt;}
.w3{width:107.200000pt;}
.w5{width:126.080000pt;}
.w8{width:129.440000pt;}
.w4{width:143.040000pt;}
.w2{width:192.000078pt;}
.wb{width:282.946667pt;}
.wa{width:528.613333pt;}
.w6{width:608.800000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:4.622267pt;}
.x2a{left:6.880000pt;}
.x23{left:8.026667pt;}
.x18{left:22.197718pt;}
.x11{left:37.943418pt;}
.xe{left:57.549407pt;}
.x12{left:61.510510pt;}
.xf{left:66.794781pt;}
.x17{left:74.107909pt;}
.x29{left:86.432000pt;}
.x14{left:93.207734pt;}
.x1{left:96.032000pt;}
.x13{left:98.590718pt;}
.x24{left:102.880000pt;}
.x20{left:104.672000pt;}
.x27{left:108.512000pt;}
.x2e{left:114.912000pt;}
.xd{left:120.431391pt;}
.x22{left:138.720000pt;}
.x2{left:143.226667pt;}
.x10{left:145.067519pt;}
.x25{left:150.653333pt;}
.x15{left:154.718244pt;}
.x19{left:156.039312pt;}
.x16{left:165.385499pt;}
.x1b{left:166.756973pt;}
.x1a{left:178.743195pt;}
.xa{left:199.546667pt;}
.x1f{left:254.946667pt;}
.x21{left:268.386667pt;}
.x1d{left:288.066667pt;}
.x8{left:311.106667pt;}
.xc{left:319.106667pt;}
.x28{left:337.986667pt;}
.xb{left:344.226667pt;}
.x2b{left:462.333333pt;}
.x2c{left:547.293333pt;}
.x6{left:562.853333pt;}
.x26{left:569.600000pt;}
.x4{left:584.293333pt;}
.x7{left:596.133333pt;}
.x5{left:611.653333pt;}
.x2d{left:632.453333pt;}
.x9{left:696.133333pt;}
.x3{left:697.893333pt;}
.x1e{left:704.800000pt;}
}




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