
    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_3ad2b160170b59731f3b8ce9.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d5aab824b898f09c05882093.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9b81f8c8878b19e9df0b4572.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_126a73d737633c2763cf32cd.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5070d07e849a0e6bc4b85aac.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.911133;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_89360103dd6557db40e155b5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.701172;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_759a1f19d37f7c46dbc55af9.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_cd40d54968ed2df424a0e3fd.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_058bb3244b4bfd9b42bad013.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_cd19978817c47e5de9fc134d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.911133;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.vc{vertical-align:-48.960000px;}
.v2{vertical-align:-27.360000px;}
.v8{vertical-align:-25.920000px;}
.v4{vertical-align:-24.480000px;}
.v3{vertical-align:-23.040000px;}
.v9{vertical-align:-21.600000px;}
.v5{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:5.760000px;}
.va{vertical-align:24.480000px;}
.v7{vertical-align:25.920000px;}
.v1{vertical-align:27.360000px;}
.vb{vertical-align:48.960000px;}
.ls1{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.501120px;}
.ls19{letter-spacing:0.599040px;}
.ls1b{letter-spacing:0.709920px;}
.ls16{letter-spacing:0.720000px;}
.ls1c{letter-spacing:0.946080px;}
.ls5{letter-spacing:0.960000px;}
.ls6{letter-spacing:1.317120px;}
.ls3{letter-spacing:1.353600px;}
.ls1a{letter-spacing:2.039040px;}
.lsa{letter-spacing:9.120000px;}
.ls18{letter-spacing:10.800000px;}
.ls0{letter-spacing:12.873000px;}
.ls17{letter-spacing:15.120000px;}
.ls20{letter-spacing:15.840000px;}
.ls10{letter-spacing:17.040000px;}
.ls21{letter-spacing:17.280000px;}
.lsc{letter-spacing:18.240000px;}
.ls7{letter-spacing:18.480000px;}
.lsb{letter-spacing:19.514880px;}
.lsd{letter-spacing:19.680000px;}
.ls8{letter-spacing:19.920000px;}
.ls13{letter-spacing:20.954880px;}
.ls9{letter-spacing:21.360000px;}
.ls1d{letter-spacing:21.600000px;}
.ls11{letter-spacing:22.560000px;}
.ls14{letter-spacing:22.800000px;}
.ls4{letter-spacing:22.953600px;}
.ls1e{letter-spacing:23.040000px;}
.lsf{letter-spacing:24.000000px;}
.ls12{letter-spacing:25.440000px;}
.ls1f{letter-spacing:25.920000px;}
.lse{letter-spacing:26.880000px;}
.ls2{letter-spacing:31.440000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws22{word-spacing:-70.080000px;}
.ws34{word-spacing:-37.728000px;}
.ws7{word-spacing:-23.336640px;}
.ws33{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.520000px;}
.ws27{word-spacing:-15.840000px;}
.ws2f{word-spacing:-13.680000px;}
.ws26{word-spacing:-11.880000px;}
.ws0{word-spacing:-11.563500px;}
.ws5{word-spacing:-11.563200px;}
.ws29{word-spacing:-11.149920px;}
.ws28{word-spacing:-10.440000px;}
.ws2c{word-spacing:-0.921600px;}
.wsd{word-spacing:-0.917760px;}
.ws2d{word-spacing:-0.771840px;}
.ws30{word-spacing:-0.586080px;}
.ws3{word-spacing:-0.373440px;}
.ws2{word-spacing:0.000000px;}
.ws31{word-spacing:0.374400px;}
.ws23{word-spacing:0.481920px;}
.wsb{word-spacing:0.488640px;}
.ws2b{word-spacing:0.564480px;}
.ws1a{word-spacing:0.766080px;}
.ws21{word-spacing:0.804480px;}
.ws1f{word-spacing:1.168320px;}
.wsf{word-spacing:1.169280px;}
.ws8{word-spacing:1.325779px;}
.ws20{word-spacing:1.747200px;}
.ws17{word-spacing:1.923840px;}
.wse{word-spacing:1.962240px;}
.ws32{word-spacing:2.217600px;}
.ws16{word-spacing:2.244480px;}
.ws15{word-spacing:3.668160px;}
.ws10{word-spacing:3.684480px;}
.ws9{word-spacing:3.877440px;}
.ws18{word-spacing:4.560000px;}
.ws4{word-spacing:5.194560px;}
.wsc{word-spacing:6.023040px;}
.ws1e{word-spacing:6.282240px;}
.ws2e{word-spacing:6.324480px;}
.ws24{word-spacing:6.495360px;}
.ws1c{word-spacing:6.564480px;}
.wsa{word-spacing:6.861120px;}
.ws11{word-spacing:7.966080px;}
.ws19{word-spacing:9.345600px;}
.ws14{word-spacing:9.406080px;}
.ws1d{word-spacing:9.514560px;}
.ws13{word-spacing:9.772800px;}
.ws6{word-spacing:10.429440px;}
.ws2a{word-spacing:10.480320px;}
.ws25{word-spacing:11.861760px;}
.ws1b{word-spacing:12.000000px;}
.ws12{word-spacing:13.764480px;}
._4d{margin-left:-11.545920px;}
._2a{margin-left:-9.372205px;}
._29{margin-left:-7.292790px;}
._2d{margin-left:-6.272640px;}
._2c{margin-left:-4.935496px;}
._e{margin-left:-3.917188px;}
._0{margin-left:-2.723274px;}
._2{margin-left:-1.314590px;}
._4{width:1.059598px;}
._1{width:2.065932px;}
._3{width:3.192241px;}
._1a{width:4.202550px;}
._9{width:5.243325px;}
._5{width:6.850920px;}
._6{width:8.235838px;}
._a{width:9.498925px;}
._7{width:10.836024px;}
._8{width:12.529856px;}
._1d{width:13.580365px;}
._10{width:14.884916px;}
._11{width:16.331248px;}
._2b{width:17.364944px;}
._f{width:18.537588px;}
._19{width:19.553614px;}
._c{width:20.561510px;}
._b{width:22.005120px;}
._d{width:23.258162px;}
._14{width:25.173022px;}
._13{width:27.191040px;}
._21{width:28.330470px;}
._20{width:29.573740px;}
._18{width:31.146617px;}
._12{width:32.253596px;}
._17{width:33.587878px;}
._16{width:35.983539px;}
._15{width:37.042759px;}
._1f{width:39.213796px;}
._1e{width:40.296000px;}
._23{width:42.561681px;}
._22{width:44.171528px;}
._26{width:46.724980px;}
._24{width:47.971074px;}
._25{width:49.476480px;}
._27{width:57.588830px;}
._28{width:58.744104px;}
._1b{width:65.017444px;}
._1c{width:66.793190px;}
._4a{width:353.108402px;}
._4c{width:403.776000px;}
._45{width:419.904000px;}
._41{width:421.056000px;}
._3a{width:434.232000px;}
._47{width:440.948402px;}
._36{width:447.264000px;}
._46{width:472.677739px;}
._37{width:497.600799px;}
._2e{width:600.118159px;}
._2f{width:691.586386px;}
._38{width:696.024000px;}
._48{width:704.546386px;}
._43{width:752.066386px;}
._3e{width:779.904000px;}
._49{width:824.256000px;}
._30{width:836.712000px;}
._34{width:838.944000px;}
._44{width:840.384000px;}
._3f{width:849.024000px;}
._32{width:853.992000px;}
._3c{width:861.984000px;}
._4b{width:877.032000px;}
._42{width:926.326006px;}
._3d{width:963.893744px;}
._39{width:986.993138px;}
._40{width:1016.237744px;}
._3b{width:1031.332480px;}
._35{width:1080.367676px;}
._33{width:1086.127676px;}
._31{width:1245.967676px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:41.760000px;}
.fs4{font-size:46.252800px;}
.fs2{font-size:46.254000px;}
.fs8{font-size:47.520000px;}
.fs5{font-size:54.720000px;}
.fsa{font-size:63.360000px;}
.fs0{font-size:70.080000px;}
.fs3{font-size:72.000000px;}
.fs6{font-size:90.720000px;}
.fs1{font-size:93.906000px;}
.fs7{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y105{bottom:3.240000px;}
.y2{bottom:4.320000px;}
.y104{bottom:74.520000px;}
.y14f{bottom:77.400000px;}
.y144{bottom:77.760000px;}
.y1{bottom:101.520000px;}
.y6a{bottom:105.840000px;}
.y147{bottom:107.640000px;}
.y12e{bottom:129.240000px;}
.y133{bottom:131.040000px;}
.y176{bottom:140.760000px;}
.y12d{bottom:152.640000px;}
.y132{bottom:154.440000px;}
.y3c{bottom:164.160000px;}
.y82{bottom:165.240000px;}
.yce{bottom:175.680000px;}
.y12c{bottom:176.040000px;}
.y51{bottom:184.320150px;}
.yb0{bottom:187.560000px;}
.y76{bottom:190.440000px;}
.y12b{bottom:199.440000px;}
.y145{bottom:201.240000px;}
.y62{bottom:201.960000px;}
.ya3{bottom:202.680000px;}
.y92{bottom:203.760000px;}
.y3b{bottom:204.480000px;}
.y81{bottom:205.560000px;}
.yfa{bottom:209.520000px;}
.y26{bottom:209.880000px;}
.y175{bottom:210.960000px;}
.y9c{bottom:214.560000px;}
.ycd{bottom:216.000000px;}
.y135{bottom:224.640000px;}
.y50{bottom:224.640150px;}
.y7d{bottom:227.880000px;}
.y75{bottom:230.400000px;}
.y98{bottom:232.920000px;}
.y174{bottom:234.360000px;}
.y102{bottom:235.080000px;}
.ye0{bottom:239.400000px;}
.y61{bottom:242.280000px;}
.ya2{bottom:243.000000px;}
.y3a{bottom:244.800000px;}
.y80{bottom:245.880000px;}
.y134{bottom:248.040000px;}
.yf9{bottom:249.840000px;}
.y25{bottom:250.200000px;}
.y9b{bottom:254.880000px;}
.ycc{bottom:256.320000px;}
.y173{bottom:257.760000px;}
.yef{bottom:261.000000px;}
.y4f{bottom:264.960150px;}
.y7c{bottom:268.200000px;}
.y74{bottom:270.720000px;}
.y137{bottom:271.440000px;}
.y151{bottom:272.160000px;}
.y101{bottom:275.400000px;}
.ydf{bottom:279.720000px;}
.y172{bottom:281.160000px;}
.y60{bottom:282.600000px;}
.ya1{bottom:282.960000px;}
.y39{bottom:285.120000px;}
.y7f{bottom:286.200000px;}
.yf8{bottom:290.160000px;}
.y24{bottom:290.520000px;}
.yc0{bottom:293.760000px;}
.y136{bottom:294.840000px;}
.y9a{bottom:295.200000px;}
.ycb{bottom:296.280000px;}
.y15e{bottom:300.600000px;}
.yee{bottom:300.960000px;}
.y171{bottom:304.560000px;}
.y4e{bottom:305.280150px;}
.y7b{bottom:308.520000px;}
.y73{bottom:311.040000px;}
.y100{bottom:315.720000px;}
.y13a{bottom:318.240000px;}
.yde{bottom:320.040000px;}
.y5f{bottom:322.560000px;}
.ya0{bottom:323.280000px;}
.y15d{bottom:324.720000px;}
.y38{bottom:325.440000px;}
.y7e{bottom:326.520000px;}
.y170{bottom:327.960000px;}
.y97{bottom:328.320000px;}
.y103{bottom:330.480000px;}
.y23{bottom:330.840000px;}
.ybf{bottom:334.080000px;}
.yca{bottom:336.600000px;}
.y99{bottom:338.760000px;}
.y91{bottom:339.480000px;}
.y14e{bottom:341.639850px;}
.y139{bottom:341.640000px;}
.yf7{bottom:344.880000px;}
.y4d{bottom:345.600150px;}
.y115{bottom:345.960000px;}
.y7a{bottom:348.480000px;}
.y15c{bottom:349.200000px;}
.y72{bottom:351.360000px;}
.yed{bottom:356.040000px;}
.ydd{bottom:360.360000px;}
.y64{bottom:362.880000px;}
.y9f{bottom:363.600000px;}
.y14d{bottom:365.039850px;}
.y138{bottom:365.040000px;}
.y37{bottom:365.760000px;}
.y96{bottom:368.640000px;}
.y114{bottom:369.360000px;}
.yff{bottom:370.800000px;}
.y22{bottom:371.160000px;}
.y16a{bottom:371.520000px;}
.y159{bottom:372.960000px;}
.y15b{bottom:373.320000px;}
.ybe{bottom:374.400000px;}
.y16f{bottom:374.760000px;}
.yc9{bottom:376.920000px;}
.y90{bottom:379.800000px;}
.yf6{bottom:385.200000px;}
.y4c{bottom:385.560150px;}
.y69{bottom:385.920150px;}
.y79{bottom:388.440000px;}
.y169{bottom:396.000000px;}
.yec{bottom:396.360000px;}
.y15a{bottom:396.720000px;}
.ydc{bottom:400.680000px;}
.y5e{bottom:403.200000px;}
.y9e{bottom:403.920000px;}
.y36{bottom:406.080000px;}
.y16e{bottom:408.240000px;}
.y95{bottom:408.960000px;}
.yfe{bottom:411.120000px;}
.y21{bottom:411.480000px;}
.ybd{bottom:414.360000px;}
.yc8{bottom:416.880000px;}
.y8f{bottom:420.120000px;}
.y168{bottom:420.480000px;}
.y158{bottom:421.200000px;}
.yf5{bottom:425.520000px;}
.y68{bottom:426.240150px;}
.yaf{bottom:428.760000px;}
.y113{bottom:433.440000px;}
.y13f{bottom:435.240000px;}
.y5d{bottom:443.520000px;}
.y9d{bottom:444.240000px;}
.y167{bottom:444.600000px;}
.y157{bottom:445.320000px;}
.y35{bottom:446.400000px;}
.y94{bottom:449.280000px;}
.yeb{bottom:451.440000px;}
.y20{bottom:451.800000px;}
.ybc{bottom:454.680000px;}
.y156{bottom:457.560000px;}
.y13e{bottom:458.640000px;}
.y8e{bottom:460.440000px;}
.y112{bottom:462.240000px;}
.yf4{bottom:465.840000px;}
.y4b{bottom:466.560150px;}
.y166{bottom:468.000000px;}
.y78{bottom:469.080000px;}
.y13d{bottom:482.040000px;}
.y5c{bottom:483.840000px;}
.y71{bottom:486.720000px;}
.y93{bottom:489.600000px;}
.yea{bottom:491.760000px;}
.y1f{bottom:492.120000px;}
.y155{bottom:494.280000px;}
.ybb{bottom:495.000000px;}
.y111{bottom:497.520000px;}
.y8d{bottom:500.760000px;}
.y143{bottom:505.440000px;}
.yfd{bottom:505.800000px;}
.y4a{bottom:506.520150px;}
.y77{bottom:509.400000px;}
.yc7{bottom:512.640000px;}
.y165{bottom:516.600000px;}
.yf{bottom:518.040000px;}
.y154{bottom:518.760000px;}
.yf3{bottom:520.560000px;}
.y5b{bottom:524.160000px;}
.y70{bottom:527.040000px;}
.y110{bottom:527.760000px;}
.y142{bottom:528.840000px;}
.y12a{bottom:530.640000px;}
.y1e{bottom:532.080000px;}
.yba{bottom:535.320000px;}
.y8c{bottom:541.080000px;}
.y34{bottom:544.680000px;}
.yfc{bottom:546.120000px;}
.y49{bottom:546.840150px;}
.yae{bottom:549.720000px;}
.yc6{bottom:552.960000px;}
.y16d{bottom:553.320000px;}
.y129{bottom:554.040000px;}
.yd2{bottom:555.480000px;}
.yf2{bottom:560.880000px;}
.y10f{bottom:562.320000px;}
.y5a{bottom:564.480000px;}
.y164{bottom:565.560000px;}
.y6f{bottom:567.360000px;}
.ydb{bottom:568.080000px;}
.y1d{bottom:572.400000px;}
.yb9{bottom:575.640000px;}
.y128{bottom:577.440000px;}
.y8b{bottom:581.400000px;}
.y33{bottom:584.640000px;}
.ye9{bottom:586.440000px;}
.y48{bottom:587.160150px;}
.y16c{bottom:589.680000px;}
.yad{bottom:590.040000px;}
.y153{bottom:591.840000px;}
.y10e{bottom:592.560000px;}
.yd1{bottom:595.800000px;}
.yc5{bottom:596.520000px;}
.y127{bottom:600.840000px;}
.yf1{bottom:601.200000px;}
.y16b{bottom:601.920000px;}
.y59{bottom:604.800000px;}
.y6e{bottom:607.680000px;}
.yda{bottom:608.400000px;}
.ye{bottom:610.920000px;}
.y1c{bottom:612.720000px;}
.y163{bottom:614.160000px;}
.yb8{bottom:615.960000px;}
.y8a{bottom:621.720000px;}
.y126{bottom:624.240000px;}
.y32{bottom:624.960000px;}
.ye8{bottom:626.760000px;}
.y10d{bottom:627.120000px;}
.y47{bottom:627.480150px;}
.yac{bottom:630.360000px;}
.yd0{bottom:636.120000px;}
.yd{bottom:636.840000px;}
.yc4{bottom:638.280000px;}
.y162{bottom:638.640000px;}
.yf0{bottom:641.520000px;}
.y152{bottom:642.600000px;}
.y58{bottom:645.120000px;}
.y131{bottom:645.840000px;}
.y125{bottom:647.640000px;}
.y6d{bottom:648.000000px;}
.yd9{bottom:648.720000px;}
.y1b{bottom:653.040000px;}
.yb7{bottom:656.280000px;}
.y10c{bottom:657.360000px;}
.y161{bottom:662.760000px;}
.y31{bottom:665.280000px;}
.ye7{bottom:667.080000px;}
.y46{bottom:667.800150px;}
.yc{bottom:668.520000px;}
.y130{bottom:669.240000px;}
.yab{bottom:670.680000px;}
.y124{bottom:671.040000px;}
.y89{bottom:676.440000px;}
.yfb{bottom:681.840000px;}
.yc3{bottom:682.200000px;}
.y65{bottom:685.440000px;}
.y6c{bottom:688.320000px;}
.yd8{bottom:689.040000px;}
.y160{bottom:689.400000px;}
.ycf{bottom:690.840000px;}
.y12f{bottom:692.640000px;}
.y1a{bottom:693.360000px;}
.yb{bottom:694.440000px;}
.yb6{bottom:696.600000px;}
.y123{bottom:703.440000px;}
.y10b{bottom:703.800000px;}
.y30{bottom:705.600000px;}
.y45{bottom:708.120150px;}
.yaa{bottom:711.000000px;}
.y141{bottom:716.040000px;}
.y88{bottom:716.400000px;}
.y150{bottom:716.760000px;}
.ye6{bottom:722.160000px;}
.yc2{bottom:724.320000px;}
.y57{bottom:725.760000px;}
.ya{bottom:726.480000px;}
.y6b{bottom:728.640000px;}
.y19{bottom:733.680000px;}
.yb5{bottom:736.920000px;}
.y14c{bottom:739.439850px;}
.y140{bottom:739.440000px;}
.y15f{bottom:740.160000px;}
.y2f{bottom:745.920000px;}
.y44{bottom:748.440150px;}
.y10a{bottom:750.600000px;}
.ya9{bottom:751.320000px;}
.y9{bottom:752.400000px;}
.y87{bottom:756.720000px;}
.ye5{bottom:762.480000px;}
.y14b{bottom:762.839850px;}
.y148{bottom:762.840000px;}
.yc1{bottom:764.640000px;}
.y56{bottom:766.080000px;}
.y122{bottom:768.240000px;}
.y18{bottom:774.000000px;}
.yb4{bottom:777.240000px;}
.y8{bottom:784.080000px;}
.y2e{bottom:786.240000px;}
.y43{bottom:788.760150px;}
.ya8{bottom:791.640000px;}
.y86{bottom:797.040000px;}
.ye4{bottom:802.800000px;}
.y55{bottom:806.400000px;}
.y13c{bottom:809.640000px;}
.y7{bottom:810.000000px;}
.y17{bottom:814.320000px;}
.y121{bottom:815.040000px;}
.yb3{bottom:817.560000px;}
.y109{bottom:818.640000px;}
.y2d{bottom:826.560000px;}
.y42{bottom:829.080000px;}
.ya7{bottom:831.960000px;}
.y13b{bottom:833.040000px;}
.y85{bottom:837.360000px;}
.y120{bottom:838.440000px;}
.y54{bottom:846.720000px;}
.y16{bottom:854.640000px;}
.y146{bottom:856.440000px;}
.yb2{bottom:857.880000px;}
.y6{bottom:861.480000px;}
.y11f{bottom:861.840000px;}
.y108{bottom:865.440000px;}
.y2c{bottom:866.880000px;}
.y41{bottom:869.400000px;}
.ya6{bottom:872.280000px;}
.yd7{bottom:876.240000px;}
.y84{bottom:877.680000px;}
.ye3{bottom:883.440000px;}
.y53{bottom:887.040000px;}
.y11e{bottom:894.240000px;}
.y15{bottom:894.960000px;}
.yb1{bottom:898.200000px;}
.y5{bottom:901.800000px;}
.y2b{bottom:907.200000px;}
.y66{bottom:909.360000px;}
.y40{bottom:909.720000px;}
.y107{bottom:912.240000px;}
.ya5{bottom:912.600000px;}
.y11d{bottom:917.640000px;}
.y83{bottom:918.000000px;}
.ye2{bottom:923.760000px;}
.y63{bottom:927.000000px;}
.yd6{bottom:934.200000px;}
.y14{bottom:935.280000px;}
.y11c{bottom:941.040000px;}
.y2a{bottom:947.520000px;}
.y67{bottom:950.040000px;}
.ya4{bottom:952.560000px;}
.ye1{bottom:958.680000px;}
.y11b{bottom:964.440000px;}
.y52{bottom:967.320000px;}
.yd5{bottom:974.520000px;}
.y13{bottom:975.600000px;}
.y4{bottom:977.040000px;}
.y29{bottom:987.840000px;}
.y106{bottom:1005.840000px;}
.y3f{bottom:1007.640000px;}
.y11a{bottom:1011.240000px;}
.yd4{bottom:1019.160000px;}
.y28{bottom:1028.160000px;}
.y3{bottom:1030.680000px;}
.y119{bottom:1034.640000px;}
.y12{bottom:1041.840000px;}
.y3e{bottom:1047.960000px;}
.y118{bottom:1058.040000px;}
.y27{bottom:1068.120000px;}
.yd3{bottom:1068.480000px;}
.y3d{bottom:1088.280000px;}
.y117{bottom:1090.440000px;}
.y14a{bottom:1113.839850px;}
.y116{bottom:1136.160000px;}
.y149{bottom:1137.239850px;}
.y11{bottom:1186.672500px;}
.y10{bottom:1208.272500px;}
.hd{height:15.480000px;}
.h2{height:20.160000px;}
.h14{height:40.964766px;}
.h16{height:40.985156px;}
.h8{height:45.373187px;}
.h6{height:45.705469px;}
.h12{height:46.615078px;}
.h9{height:50.027344px;}
.he{height:53.704687px;}
.h15{height:62.153438px;}
.h18{height:62.184375px;}
.h19{height:63.855000px;}
.h1a{height:65.465156px;}
.h7{height:68.745469px;}
.h3{height:68.779687px;}
.ha{height:70.627500px;}
.h13{height:70.628906px;}
.h1d{height:70.664062px;}
.hb{height:71.314594px;}
.h17{height:72.562500px;}
.hc{height:72.754594px;}
.h5{height:72.755771px;}
.h11{height:73.998281px;}
.hf{height:91.428750px;}
.h4{height:92.163604px;}
.h10{height:94.689844px;}
.h1e{height:119.624063px;}
.h1c{height:892.500000px;}
.h1b{height:892.800000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:6.480000px;}
.w2{width:8.640000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.w4{width:1262.880000px;}
.w5{width:1263.000000px;}
.x0{left:0.000000px;}
.x4{left:105.120000px;}
.x13{left:108.000000px;}
.x14{left:110.520000px;}
.x1f{left:117.360000px;}
.x3{left:118.440000px;}
.x6{left:119.880000px;}
.x5{left:122.760000px;}
.x7{left:124.200000px;}
.x2{left:129.960000px;}
.x19{left:131.040000px;}
.x10{left:135.000000px;}
.x8{left:139.320000px;}
.x29{left:148.320000px;}
.x1b{left:153.720000px;}
.xe{left:155.160000px;}
.x15{left:156.960000px;}
.x17{left:158.400000px;}
.x24{left:160.560000px;}
.x16{left:161.640000px;}
.x20{left:163.800000px;}
.x21{left:164.880000px;}
.x28{left:168.480000px;}
.xd{left:255.960000px;}
.xf{left:268.200000px;}
.xc{left:330.480000px;}
.x1a{left:362.880000px;}
.x23{left:369.720000px;}
.x18{left:394.200000px;}
.x22{left:401.040000px;}
.x9{left:416.520000px;}
.x1c{left:686.160000px;}
.x25{left:693.000000px;}
.x1e{left:734.400000px;}
.x27{left:741.240000px;}
.x11{left:744.480000px;}
.xb{left:751.320000px;}
.xa{left:770.760000px;}
.x1{left:779.760000px;}
.x1d{left:857.520000px;}
.x26{left:864.360000px;}
.x12{left:1141.200000px;}
@media print{
.vc{vertical-align:-43.520000pt;}
.v2{vertical-align:-24.320000pt;}
.v8{vertical-align:-23.040000pt;}
.v4{vertical-align:-21.760000pt;}
.v3{vertical-align:-20.480000pt;}
.v9{vertical-align:-19.200000pt;}
.v5{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:5.120000pt;}
.va{vertical-align:21.760000pt;}
.v7{vertical-align:23.040000pt;}
.v1{vertical-align:24.320000pt;}
.vb{vertical-align:43.520000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.445440pt;}
.ls19{letter-spacing:0.532480pt;}
.ls1b{letter-spacing:0.631040pt;}
.ls16{letter-spacing:0.640000pt;}
.ls1c{letter-spacing:0.840960pt;}
.ls5{letter-spacing:0.853333pt;}
.ls6{letter-spacing:1.170773pt;}
.ls3{letter-spacing:1.203200pt;}
.ls1a{letter-spacing:1.812480pt;}
.lsa{letter-spacing:8.106667pt;}
.ls18{letter-spacing:9.600000pt;}
.ls0{letter-spacing:11.442667pt;}
.ls17{letter-spacing:13.440000pt;}
.ls20{letter-spacing:14.080000pt;}
.ls10{letter-spacing:15.146667pt;}
.ls21{letter-spacing:15.360000pt;}
.lsc{letter-spacing:16.213333pt;}
.ls7{letter-spacing:16.426667pt;}
.lsb{letter-spacing:17.346560pt;}
.lsd{letter-spacing:17.493333pt;}
.ls8{letter-spacing:17.706667pt;}
.ls13{letter-spacing:18.626560pt;}
.ls9{letter-spacing:18.986667pt;}
.ls1d{letter-spacing:19.200000pt;}
.ls11{letter-spacing:20.053333pt;}
.ls14{letter-spacing:20.266667pt;}
.ls4{letter-spacing:20.403200pt;}
.ls1e{letter-spacing:20.480000pt;}
.lsf{letter-spacing:21.333333pt;}
.ls12{letter-spacing:22.613333pt;}
.ls1f{letter-spacing:23.040000pt;}
.lse{letter-spacing:23.893333pt;}
.ls2{letter-spacing:27.946667pt;}
.ws22{word-spacing:-62.293333pt;}
.ws34{word-spacing:-33.536000pt;}
.ws7{word-spacing:-20.743680pt;}
.ws33{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.573333pt;}
.ws27{word-spacing:-14.080000pt;}
.ws2f{word-spacing:-12.160000pt;}
.ws26{word-spacing:-10.560000pt;}
.ws0{word-spacing:-10.278667pt;}
.ws5{word-spacing:-10.278400pt;}
.ws29{word-spacing:-9.911040pt;}
.ws28{word-spacing:-9.280000pt;}
.ws2c{word-spacing:-0.819200pt;}
.wsd{word-spacing:-0.815787pt;}
.ws2d{word-spacing:-0.686080pt;}
.ws30{word-spacing:-0.520960pt;}
.ws3{word-spacing:-0.331947pt;}
.ws2{word-spacing:0.000000pt;}
.ws31{word-spacing:0.332800pt;}
.ws23{word-spacing:0.428373pt;}
.wsb{word-spacing:0.434347pt;}
.ws2b{word-spacing:0.501760pt;}
.ws1a{word-spacing:0.680960pt;}
.ws21{word-spacing:0.715093pt;}
.ws1f{word-spacing:1.038507pt;}
.wsf{word-spacing:1.039360pt;}
.ws8{word-spacing:1.178470pt;}
.ws20{word-spacing:1.553067pt;}
.ws17{word-spacing:1.710080pt;}
.wse{word-spacing:1.744213pt;}
.ws32{word-spacing:1.971200pt;}
.ws16{word-spacing:1.995093pt;}
.ws15{word-spacing:3.260587pt;}
.ws10{word-spacing:3.275093pt;}
.ws9{word-spacing:3.446613pt;}
.ws18{word-spacing:4.053333pt;}
.ws4{word-spacing:4.617387pt;}
.wsc{word-spacing:5.353813pt;}
.ws1e{word-spacing:5.584213pt;}
.ws2e{word-spacing:5.621760pt;}
.ws24{word-spacing:5.773653pt;}
.ws1c{word-spacing:5.835093pt;}
.wsa{word-spacing:6.098773pt;}
.ws11{word-spacing:7.080960pt;}
.ws19{word-spacing:8.307200pt;}
.ws14{word-spacing:8.360960pt;}
.ws1d{word-spacing:8.457387pt;}
.ws13{word-spacing:8.686933pt;}
.ws6{word-spacing:9.270613pt;}
.ws2a{word-spacing:9.315840pt;}
.ws25{word-spacing:10.543787pt;}
.ws1b{word-spacing:10.666667pt;}
.ws12{word-spacing:12.235093pt;}
._4d{margin-left:-10.263040pt;}
._2a{margin-left:-8.330849pt;}
._29{margin-left:-6.482480pt;}
._2d{margin-left:-5.575680pt;}
._2c{margin-left:-4.387107pt;}
._e{margin-left:-3.481945pt;}
._0{margin-left:-2.420688pt;}
._2{margin-left:-1.168525pt;}
._4{width:0.941865pt;}
._1{width:1.836384pt;}
._3{width:2.837547pt;}
._1a{width:3.735600pt;}
._9{width:4.660733pt;}
._5{width:6.089707pt;}
._6{width:7.320745pt;}
._a{width:8.443489pt;}
._7{width:9.632021pt;}
._8{width:11.137650pt;}
._1d{width:12.071435pt;}
._10{width:13.231037pt;}
._11{width:14.516665pt;}
._2b{width:15.435506pt;}
._f{width:16.477856pt;}
._19{width:17.380990pt;}
._c{width:18.276898pt;}
._b{width:19.560107pt;}
._d{width:20.673922pt;}
._14{width:22.376019pt;}
._13{width:24.169813pt;}
._21{width:25.182640pt;}
._20{width:26.287769pt;}
._18{width:27.685882pt;}
._12{width:28.669863pt;}
._17{width:29.855892pt;}
._16{width:31.985368pt;}
._15{width:32.926897pt;}
._1f{width:34.856708pt;}
._1e{width:35.818667pt;}
._23{width:37.832605pt;}
._22{width:39.263580pt;}
._26{width:41.533316pt;}
._24{width:42.640955pt;}
._25{width:43.979093pt;}
._27{width:51.190071pt;}
._28{width:52.216981pt;}
._1b{width:57.793284pt;}
._1c{width:59.371724pt;}
._4a{width:313.874135pt;}
._4c{width:358.912000pt;}
._45{width:373.248000pt;}
._41{width:374.272000pt;}
._3a{width:385.984000pt;}
._47{width:391.954135pt;}
._36{width:397.568000pt;}
._46{width:420.157990pt;}
._37{width:442.311821pt;}
._2e{width:533.438363pt;}
._2f{width:614.743455pt;}
._38{width:618.688000pt;}
._48{width:626.263455pt;}
._43{width:668.503455pt;}
._3e{width:693.248000pt;}
._49{width:732.672000pt;}
._30{width:743.744000pt;}
._34{width:745.728000pt;}
._44{width:747.008000pt;}
._3f{width:754.688000pt;}
._32{width:759.104000pt;}
._3c{width:766.208000pt;}
._4b{width:779.584000pt;}
._42{width:823.400894pt;}
._3d{width:856.794439pt;}
._39{width:877.327234pt;}
._40{width:903.322439pt;}
._3b{width:916.739983pt;}
._35{width:960.326823pt;}
._33{width:965.446823pt;}
._31{width:1107.526823pt;}
.fs9{font-size:37.120000pt;}
.fs4{font-size:41.113600pt;}
.fs2{font-size:41.114667pt;}
.fs8{font-size:42.240000pt;}
.fs5{font-size:48.640000pt;}
.fsa{font-size:56.320000pt;}
.fs0{font-size:62.293333pt;}
.fs3{font-size:64.000000pt;}
.fs6{font-size:80.640000pt;}
.fs1{font-size:83.472000pt;}
.fs7{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y105{bottom:2.880000pt;}
.y2{bottom:3.840000pt;}
.y104{bottom:66.240000pt;}
.y14f{bottom:68.800000pt;}
.y144{bottom:69.120000pt;}
.y1{bottom:90.240000pt;}
.y6a{bottom:94.080000pt;}
.y147{bottom:95.680000pt;}
.y12e{bottom:114.880000pt;}
.y133{bottom:116.480000pt;}
.y176{bottom:125.120000pt;}
.y12d{bottom:135.680000pt;}
.y132{bottom:137.280000pt;}
.y3c{bottom:145.920000pt;}
.y82{bottom:146.880000pt;}
.yce{bottom:156.160000pt;}
.y12c{bottom:156.480000pt;}
.y51{bottom:163.840133pt;}
.yb0{bottom:166.720000pt;}
.y76{bottom:169.280000pt;}
.y12b{bottom:177.280000pt;}
.y145{bottom:178.880000pt;}
.y62{bottom:179.520000pt;}
.ya3{bottom:180.160000pt;}
.y92{bottom:181.120000pt;}
.y3b{bottom:181.760000pt;}
.y81{bottom:182.720000pt;}
.yfa{bottom:186.240000pt;}
.y26{bottom:186.560000pt;}
.y175{bottom:187.520000pt;}
.y9c{bottom:190.720000pt;}
.ycd{bottom:192.000000pt;}
.y135{bottom:199.680000pt;}
.y50{bottom:199.680133pt;}
.y7d{bottom:202.560000pt;}
.y75{bottom:204.800000pt;}
.y98{bottom:207.040000pt;}
.y174{bottom:208.320000pt;}
.y102{bottom:208.960000pt;}
.ye0{bottom:212.800000pt;}
.y61{bottom:215.360000pt;}
.ya2{bottom:216.000000pt;}
.y3a{bottom:217.600000pt;}
.y80{bottom:218.560000pt;}
.y134{bottom:220.480000pt;}
.yf9{bottom:222.080000pt;}
.y25{bottom:222.400000pt;}
.y9b{bottom:226.560000pt;}
.ycc{bottom:227.840000pt;}
.y173{bottom:229.120000pt;}
.yef{bottom:232.000000pt;}
.y4f{bottom:235.520133pt;}
.y7c{bottom:238.400000pt;}
.y74{bottom:240.640000pt;}
.y137{bottom:241.280000pt;}
.y151{bottom:241.920000pt;}
.y101{bottom:244.800000pt;}
.ydf{bottom:248.640000pt;}
.y172{bottom:249.920000pt;}
.y60{bottom:251.200000pt;}
.ya1{bottom:251.520000pt;}
.y39{bottom:253.440000pt;}
.y7f{bottom:254.400000pt;}
.yf8{bottom:257.920000pt;}
.y24{bottom:258.240000pt;}
.yc0{bottom:261.120000pt;}
.y136{bottom:262.080000pt;}
.y9a{bottom:262.400000pt;}
.ycb{bottom:263.360000pt;}
.y15e{bottom:267.200000pt;}
.yee{bottom:267.520000pt;}
.y171{bottom:270.720000pt;}
.y4e{bottom:271.360133pt;}
.y7b{bottom:274.240000pt;}
.y73{bottom:276.480000pt;}
.y100{bottom:280.640000pt;}
.y13a{bottom:282.880000pt;}
.yde{bottom:284.480000pt;}
.y5f{bottom:286.720000pt;}
.ya0{bottom:287.360000pt;}
.y15d{bottom:288.640000pt;}
.y38{bottom:289.280000pt;}
.y7e{bottom:290.240000pt;}
.y170{bottom:291.520000pt;}
.y97{bottom:291.840000pt;}
.y103{bottom:293.760000pt;}
.y23{bottom:294.080000pt;}
.ybf{bottom:296.960000pt;}
.yca{bottom:299.200000pt;}
.y99{bottom:301.120000pt;}
.y91{bottom:301.760000pt;}
.y14e{bottom:303.679867pt;}
.y139{bottom:303.680000pt;}
.yf7{bottom:306.560000pt;}
.y4d{bottom:307.200133pt;}
.y115{bottom:307.520000pt;}
.y7a{bottom:309.760000pt;}
.y15c{bottom:310.400000pt;}
.y72{bottom:312.320000pt;}
.yed{bottom:316.480000pt;}
.ydd{bottom:320.320000pt;}
.y64{bottom:322.560000pt;}
.y9f{bottom:323.200000pt;}
.y14d{bottom:324.479867pt;}
.y138{bottom:324.480000pt;}
.y37{bottom:325.120000pt;}
.y96{bottom:327.680000pt;}
.y114{bottom:328.320000pt;}
.yff{bottom:329.600000pt;}
.y22{bottom:329.920000pt;}
.y16a{bottom:330.240000pt;}
.y159{bottom:331.520000pt;}
.y15b{bottom:331.840000pt;}
.ybe{bottom:332.800000pt;}
.y16f{bottom:333.120000pt;}
.yc9{bottom:335.040000pt;}
.y90{bottom:337.600000pt;}
.yf6{bottom:342.400000pt;}
.y4c{bottom:342.720133pt;}
.y69{bottom:343.040133pt;}
.y79{bottom:345.280000pt;}
.y169{bottom:352.000000pt;}
.yec{bottom:352.320000pt;}
.y15a{bottom:352.640000pt;}
.ydc{bottom:356.160000pt;}
.y5e{bottom:358.400000pt;}
.y9e{bottom:359.040000pt;}
.y36{bottom:360.960000pt;}
.y16e{bottom:362.880000pt;}
.y95{bottom:363.520000pt;}
.yfe{bottom:365.440000pt;}
.y21{bottom:365.760000pt;}
.ybd{bottom:368.320000pt;}
.yc8{bottom:370.560000pt;}
.y8f{bottom:373.440000pt;}
.y168{bottom:373.760000pt;}
.y158{bottom:374.400000pt;}
.yf5{bottom:378.240000pt;}
.y68{bottom:378.880133pt;}
.yaf{bottom:381.120000pt;}
.y113{bottom:385.280000pt;}
.y13f{bottom:386.880000pt;}
.y5d{bottom:394.240000pt;}
.y9d{bottom:394.880000pt;}
.y167{bottom:395.200000pt;}
.y157{bottom:395.840000pt;}
.y35{bottom:396.800000pt;}
.y94{bottom:399.360000pt;}
.yeb{bottom:401.280000pt;}
.y20{bottom:401.600000pt;}
.ybc{bottom:404.160000pt;}
.y156{bottom:406.720000pt;}
.y13e{bottom:407.680000pt;}
.y8e{bottom:409.280000pt;}
.y112{bottom:410.880000pt;}
.yf4{bottom:414.080000pt;}
.y4b{bottom:414.720133pt;}
.y166{bottom:416.000000pt;}
.y78{bottom:416.960000pt;}
.y13d{bottom:428.480000pt;}
.y5c{bottom:430.080000pt;}
.y71{bottom:432.640000pt;}
.y93{bottom:435.200000pt;}
.yea{bottom:437.120000pt;}
.y1f{bottom:437.440000pt;}
.y155{bottom:439.360000pt;}
.ybb{bottom:440.000000pt;}
.y111{bottom:442.240000pt;}
.y8d{bottom:445.120000pt;}
.y143{bottom:449.280000pt;}
.yfd{bottom:449.600000pt;}
.y4a{bottom:450.240133pt;}
.y77{bottom:452.800000pt;}
.yc7{bottom:455.680000pt;}
.y165{bottom:459.200000pt;}
.yf{bottom:460.480000pt;}
.y154{bottom:461.120000pt;}
.yf3{bottom:462.720000pt;}
.y5b{bottom:465.920000pt;}
.y70{bottom:468.480000pt;}
.y110{bottom:469.120000pt;}
.y142{bottom:470.080000pt;}
.y12a{bottom:471.680000pt;}
.y1e{bottom:472.960000pt;}
.yba{bottom:475.840000pt;}
.y8c{bottom:480.960000pt;}
.y34{bottom:484.160000pt;}
.yfc{bottom:485.440000pt;}
.y49{bottom:486.080133pt;}
.yae{bottom:488.640000pt;}
.yc6{bottom:491.520000pt;}
.y16d{bottom:491.840000pt;}
.y129{bottom:492.480000pt;}
.yd2{bottom:493.760000pt;}
.yf2{bottom:498.560000pt;}
.y10f{bottom:499.840000pt;}
.y5a{bottom:501.760000pt;}
.y164{bottom:502.720000pt;}
.y6f{bottom:504.320000pt;}
.ydb{bottom:504.960000pt;}
.y1d{bottom:508.800000pt;}
.yb9{bottom:511.680000pt;}
.y128{bottom:513.280000pt;}
.y8b{bottom:516.800000pt;}
.y33{bottom:519.680000pt;}
.ye9{bottom:521.280000pt;}
.y48{bottom:521.920133pt;}
.y16c{bottom:524.160000pt;}
.yad{bottom:524.480000pt;}
.y153{bottom:526.080000pt;}
.y10e{bottom:526.720000pt;}
.yd1{bottom:529.600000pt;}
.yc5{bottom:530.240000pt;}
.y127{bottom:534.080000pt;}
.yf1{bottom:534.400000pt;}
.y16b{bottom:535.040000pt;}
.y59{bottom:537.600000pt;}
.y6e{bottom:540.160000pt;}
.yda{bottom:540.800000pt;}
.ye{bottom:543.040000pt;}
.y1c{bottom:544.640000pt;}
.y163{bottom:545.920000pt;}
.yb8{bottom:547.520000pt;}
.y8a{bottom:552.640000pt;}
.y126{bottom:554.880000pt;}
.y32{bottom:555.520000pt;}
.ye8{bottom:557.120000pt;}
.y10d{bottom:557.440000pt;}
.y47{bottom:557.760133pt;}
.yac{bottom:560.320000pt;}
.yd0{bottom:565.440000pt;}
.yd{bottom:566.080000pt;}
.yc4{bottom:567.360000pt;}
.y162{bottom:567.680000pt;}
.yf0{bottom:570.240000pt;}
.y152{bottom:571.200000pt;}
.y58{bottom:573.440000pt;}
.y131{bottom:574.080000pt;}
.y125{bottom:575.680000pt;}
.y6d{bottom:576.000000pt;}
.yd9{bottom:576.640000pt;}
.y1b{bottom:580.480000pt;}
.yb7{bottom:583.360000pt;}
.y10c{bottom:584.320000pt;}
.y161{bottom:589.120000pt;}
.y31{bottom:591.360000pt;}
.ye7{bottom:592.960000pt;}
.y46{bottom:593.600133pt;}
.yc{bottom:594.240000pt;}
.y130{bottom:594.880000pt;}
.yab{bottom:596.160000pt;}
.y124{bottom:596.480000pt;}
.y89{bottom:601.280000pt;}
.yfb{bottom:606.080000pt;}
.yc3{bottom:606.400000pt;}
.y65{bottom:609.280000pt;}
.y6c{bottom:611.840000pt;}
.yd8{bottom:612.480000pt;}
.y160{bottom:612.800000pt;}
.ycf{bottom:614.080000pt;}
.y12f{bottom:615.680000pt;}
.y1a{bottom:616.320000pt;}
.yb{bottom:617.280000pt;}
.yb6{bottom:619.200000pt;}
.y123{bottom:625.280000pt;}
.y10b{bottom:625.600000pt;}
.y30{bottom:627.200000pt;}
.y45{bottom:629.440133pt;}
.yaa{bottom:632.000000pt;}
.y141{bottom:636.480000pt;}
.y88{bottom:636.800000pt;}
.y150{bottom:637.120000pt;}
.ye6{bottom:641.920000pt;}
.yc2{bottom:643.840000pt;}
.y57{bottom:645.120000pt;}
.ya{bottom:645.760000pt;}
.y6b{bottom:647.680000pt;}
.y19{bottom:652.160000pt;}
.yb5{bottom:655.040000pt;}
.y14c{bottom:657.279867pt;}
.y140{bottom:657.280000pt;}
.y15f{bottom:657.920000pt;}
.y2f{bottom:663.040000pt;}
.y44{bottom:665.280133pt;}
.y10a{bottom:667.200000pt;}
.ya9{bottom:667.840000pt;}
.y9{bottom:668.800000pt;}
.y87{bottom:672.640000pt;}
.ye5{bottom:677.760000pt;}
.y14b{bottom:678.079867pt;}
.y148{bottom:678.080000pt;}
.yc1{bottom:679.680000pt;}
.y56{bottom:680.960000pt;}
.y122{bottom:682.880000pt;}
.y18{bottom:688.000000pt;}
.yb4{bottom:690.880000pt;}
.y8{bottom:696.960000pt;}
.y2e{bottom:698.880000pt;}
.y43{bottom:701.120133pt;}
.ya8{bottom:703.680000pt;}
.y86{bottom:708.480000pt;}
.ye4{bottom:713.600000pt;}
.y55{bottom:716.800000pt;}
.y13c{bottom:719.680000pt;}
.y7{bottom:720.000000pt;}
.y17{bottom:723.840000pt;}
.y121{bottom:724.480000pt;}
.yb3{bottom:726.720000pt;}
.y109{bottom:727.680000pt;}
.y2d{bottom:734.720000pt;}
.y42{bottom:736.960000pt;}
.ya7{bottom:739.520000pt;}
.y13b{bottom:740.480000pt;}
.y85{bottom:744.320000pt;}
.y120{bottom:745.280000pt;}
.y54{bottom:752.640000pt;}
.y16{bottom:759.680000pt;}
.y146{bottom:761.280000pt;}
.yb2{bottom:762.560000pt;}
.y6{bottom:765.760000pt;}
.y11f{bottom:766.080000pt;}
.y108{bottom:769.280000pt;}
.y2c{bottom:770.560000pt;}
.y41{bottom:772.800000pt;}
.ya6{bottom:775.360000pt;}
.yd7{bottom:778.880000pt;}
.y84{bottom:780.160000pt;}
.ye3{bottom:785.280000pt;}
.y53{bottom:788.480000pt;}
.y11e{bottom:794.880000pt;}
.y15{bottom:795.520000pt;}
.yb1{bottom:798.400000pt;}
.y5{bottom:801.600000pt;}
.y2b{bottom:806.400000pt;}
.y66{bottom:808.320000pt;}
.y40{bottom:808.640000pt;}
.y107{bottom:810.880000pt;}
.ya5{bottom:811.200000pt;}
.y11d{bottom:815.680000pt;}
.y83{bottom:816.000000pt;}
.ye2{bottom:821.120000pt;}
.y63{bottom:824.000000pt;}
.yd6{bottom:830.400000pt;}
.y14{bottom:831.360000pt;}
.y11c{bottom:836.480000pt;}
.y2a{bottom:842.240000pt;}
.y67{bottom:844.480000pt;}
.ya4{bottom:846.720000pt;}
.ye1{bottom:852.160000pt;}
.y11b{bottom:857.280000pt;}
.y52{bottom:859.840000pt;}
.yd5{bottom:866.240000pt;}
.y13{bottom:867.200000pt;}
.y4{bottom:868.480000pt;}
.y29{bottom:878.080000pt;}
.y106{bottom:894.080000pt;}
.y3f{bottom:895.680000pt;}
.y11a{bottom:898.880000pt;}
.yd4{bottom:905.920000pt;}
.y28{bottom:913.920000pt;}
.y3{bottom:916.160000pt;}
.y119{bottom:919.680000pt;}
.y12{bottom:926.080000pt;}
.y3e{bottom:931.520000pt;}
.y118{bottom:940.480000pt;}
.y27{bottom:949.440000pt;}
.yd3{bottom:949.760000pt;}
.y3d{bottom:967.360000pt;}
.y117{bottom:969.280000pt;}
.y14a{bottom:990.079867pt;}
.y116{bottom:1009.920000pt;}
.y149{bottom:1010.879867pt;}
.y11{bottom:1054.820000pt;}
.y10{bottom:1074.020000pt;}
.hd{height:13.760000pt;}
.h2{height:17.920000pt;}
.h14{height:36.413125pt;}
.h16{height:36.431250pt;}
.h8{height:40.331721pt;}
.h6{height:40.627083pt;}
.h12{height:41.435625pt;}
.h9{height:44.468750pt;}
.he{height:47.737500pt;}
.h15{height:55.247500pt;}
.h18{height:55.275000pt;}
.h19{height:56.760000pt;}
.h1a{height:58.191250pt;}
.h7{height:61.107083pt;}
.h3{height:61.137500pt;}
.ha{height:62.780000pt;}
.h13{height:62.781250pt;}
.h1d{height:62.812500pt;}
.hb{height:63.390750pt;}
.h17{height:64.500000pt;}
.hc{height:64.670750pt;}
.h5{height:64.671797pt;}
.h11{height:65.776250pt;}
.hf{height:81.270000pt;}
.h4{height:81.923203pt;}
.h10{height:84.168750pt;}
.h1e{height:106.332500pt;}
.h1c{height:793.333333pt;}
.h1b{height:793.600000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:5.760000pt;}
.w2{width:7.680000pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.w4{width:1122.560000pt;}
.w5{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x4{left:93.440000pt;}
.x13{left:96.000000pt;}
.x14{left:98.240000pt;}
.x1f{left:104.320000pt;}
.x3{left:105.280000pt;}
.x6{left:106.560000pt;}
.x5{left:109.120000pt;}
.x7{left:110.400000pt;}
.x2{left:115.520000pt;}
.x19{left:116.480000pt;}
.x10{left:120.000000pt;}
.x8{left:123.840000pt;}
.x29{left:131.840000pt;}
.x1b{left:136.640000pt;}
.xe{left:137.920000pt;}
.x15{left:139.520000pt;}
.x17{left:140.800000pt;}
.x24{left:142.720000pt;}
.x16{left:143.680000pt;}
.x20{left:145.600000pt;}
.x21{left:146.560000pt;}
.x28{left:149.760000pt;}
.xd{left:227.520000pt;}
.xf{left:238.400000pt;}
.xc{left:293.760000pt;}
.x1a{left:322.560000pt;}
.x23{left:328.640000pt;}
.x18{left:350.400000pt;}
.x22{left:356.480000pt;}
.x9{left:370.240000pt;}
.x1c{left:609.920000pt;}
.x25{left:616.000000pt;}
.x1e{left:652.800000pt;}
.x27{left:658.880000pt;}
.x11{left:661.760000pt;}
.xb{left:667.840000pt;}
.xa{left:685.120000pt;}
.x1{left:693.120000pt;}
.x1d{left:762.240000pt;}
.x26{left:768.320000pt;}
.x12{left:1014.400000pt;}
}




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