
    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_ed8f9a916afdb042647f138b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_f68ba9c5b6562f88899eb825.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_47d51a8b98951c4a07167fa9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_e03fa19ceae88902e67a4d6d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ed55fbd3cbf8bf49b1f31931.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.202148;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff7{font-family:ff7;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls19{letter-spacing:-0.960000px;}
.lsf{letter-spacing:-0.798000px;}
.lsc{letter-spacing:-0.786000px;}
.ls16{letter-spacing:-0.696000px;}
.ls15{letter-spacing:-0.660000px;}
.ls1e{letter-spacing:-0.579600px;}
.ls25{letter-spacing:-0.544800px;}
.ls2d{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.463800px;}
.ls8{letter-spacing:-0.430800px;}
.ls24{letter-spacing:-0.414000px;}
.ls2a{letter-spacing:-0.326400px;}
.ls20{letter-spacing:-0.303000px;}
.ls1a{letter-spacing:-0.240600px;}
.ls11{letter-spacing:-0.226800px;}
.ls4{letter-spacing:-0.132600px;}
.lsd{letter-spacing:-0.115800px;}
.ls1c{letter-spacing:-0.107400px;}
.lse{letter-spacing:-0.058320px;}
.ls1f{letter-spacing:-0.041040px;}
.ls29{letter-spacing:-0.038160px;}
.ls2{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.023760px;}
.ls3{letter-spacing:0.038880px;}
.ls10{letter-spacing:0.060600px;}
.ls0{letter-spacing:0.118800px;}
.ls6{letter-spacing:0.150000px;}
.ls2e{letter-spacing:0.169200px;}
.ls2c{letter-spacing:0.186600px;}
.ls9{letter-spacing:0.190200px;}
.ls23{letter-spacing:0.195000px;}
.ls1b{letter-spacing:0.209400px;}
.ls7{letter-spacing:0.210000px;}
.lsb{letter-spacing:0.306000px;}
.lsa{letter-spacing:0.360000px;}
.ls21{letter-spacing:0.393600px;}
.ls28{letter-spacing:0.479520px;}
.ls13{letter-spacing:0.617760px;}
.ls22{letter-spacing:0.637200px;}
.ls2f{letter-spacing:0.660000px;}
.ls14{letter-spacing:1.026000px;}
.ls1d{letter-spacing:2.106720px;}
.ls18{letter-spacing:5.706720px;}
.ls2b{letter-spacing:12.330720px;}
.ls26{letter-spacing:17.946720px;}
.ls12{letter-spacing:21.546720px;}
.ls1{letter-spacing:38.106720px;}
.ls27{letter-spacing:42.570720px;}
.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;}
}
.ws4{word-spacing:-21.760560px;}
.ws0{word-spacing:-19.077120px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws2{word-spacing:-14.506440px;}
.ws16{word-spacing:-14.165760px;}
.ws14{word-spacing:-13.811760px;}
.wsc{word-spacing:-13.715160px;}
.ws11{word-spacing:-13.700760px;}
.ws13{word-spacing:-13.692360px;}
.ws15{word-spacing:-13.674960px;}
.ws8{word-spacing:-13.505760px;}
.ws12{word-spacing:-13.467600px;}
.wsf{word-spacing:-13.464720px;}
.wsa{word-spacing:-13.447440px;}
.wsd{word-spacing:-13.398360px;}
.ws9{word-spacing:-13.389960px;}
.wse{word-spacing:-13.265160px;}
.ws10{word-spacing:-13.202760px;}
.ws5{word-spacing:-9.437760px;}
.ws7{word-spacing:-9.146880px;}
.ws6{word-spacing:-8.786880px;}
.wsb{word-spacing:0.000000px;}
._1e{margin-left:-532.918560px;}
._1f{margin-left:-528.059520px;}
._1{margin-left:-487.878240px;}
._6{margin-left:-409.254240px;}
._8{margin-left:-306.459120px;}
._12{margin-left:-292.170240px;}
._4{margin-left:-289.292160px;}
._5{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._17{margin-left:-247.991040px;}
._b{margin-left:-240.510240px;}
._16{margin-left:-222.774000px;}
._22{margin-left:-214.738560px;}
._f{margin-left:-203.010240px;}
._19{margin-left:-201.453120px;}
._18{margin-left:-200.226720px;}
._21{margin-left:-190.074240px;}
._e{margin-left:-171.054720px;}
._26{margin-left:-169.761600px;}
._d{margin-left:-165.322080px;}
._10{margin-left:-159.758400px;}
._9{margin-left:-153.774720px;}
._3{margin-left:-150.014400px;}
._a{margin-left:-148.521600px;}
._25{margin-left:-145.104000px;}
._c{margin-left:-134.192160px;}
._20{margin-left:-133.011360px;}
._23{margin-left:-120.382560px;}
._11{margin-left:-115.522560px;}
._24{margin-left:-109.410240px;}
._1d{margin-left:-102.529440px;}
._7{margin-left:-91.124880px;}
._1c{margin-left:-86.399760px;}
._1b{margin-left:-83.520000px;}
._13{margin-left:-81.351360px;}
._15{margin-left:-66.703680px;}
._14{margin-left:-49.123920px;}
._1a{margin-left:-31.530240px;}
._28{margin-left:-4.827600px;}
._27{margin-left:-2.946240px;}
._2{margin-left:-1.347840px;}
._29{width:1.250400px;}
._2b{width:2.571600px;}
._33{width:3.678480px;}
._2f{width:5.378400px;}
._2e{width:6.513840px;}
._30{width:7.892880px;}
._31{width:8.895120px;}
._2d{width:10.724400px;}
._2c{width:11.743200px;}
._35{width:14.700960px;}
._36{width:16.026720px;}
._32{width:17.031600px;}
._34{width:18.943920px;}
._3a{width:20.280720px;}
._39{width:21.872160px;}
._2a{width:22.881120px;}
._37{width:24.322320px;}
._38{width:25.338240px;}
._3c{width:75.058560px;}
._3f{width:97.408800px;}
._3b{width:114.201360px;}
._3d{width:116.352720px;}
._3e{width:125.376480px;}
._42{width:158.842080px;}
._41{width:160.216560px;}
._40{width:251.231520px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.ya6{bottom:-16.380000px;}
.y0{bottom:0.000000px;}
.yb1{bottom:3.960000px;}
.yd6{bottom:4.680000px;}
.yc6{bottom:5.040000px;}
.yee{bottom:5.940000px;}
.y11f{bottom:6.120000px;}
.y2d{bottom:6.660000px;}
.y139{bottom:7.380000px;}
.yb4{bottom:7.560000px;}
.y120{bottom:8.100000px;}
.y129{bottom:8.145000px;}
.y128{bottom:8.280000px;}
.y9f{bottom:8.640000px;}
.y11b{bottom:9.720000px;}
.y13a{bottom:11.160000px;}
.yaa{bottom:12.420000px;}
.y189{bottom:12.600000px;}
.y17f{bottom:12.780000px;}
.y103{bottom:13.140000px;}
.yd0{bottom:13.860000px;}
.y181{bottom:17.100000px;}
.y187{bottom:17.280000px;}
.y2b{bottom:19.080000px;}
.ya5{bottom:19.620000px;}
.y125{bottom:20.205000px;}
.y9d{bottom:21.780000px;}
.ybe{bottom:22.140000px;}
.ybc{bottom:22.320000px;}
.yd5{bottom:22.860000px;}
.yf0{bottom:23.040000px;}
.yc5{bottom:23.400000px;}
.y137{bottom:27.720000px;}
.y185{bottom:27.765000px;}
.y127{bottom:29.385000px;}
.ycf{bottom:32.040000px;}
.yc1{bottom:32.400000px;}
.yba{bottom:32.580000px;}
.ya9{bottom:33.300000px;}
.y124{bottom:38.565000px;}
.ya4{bottom:40.500000px;}
.y131{bottom:40.854000px;}
.y11d{bottom:40.860000px;}
.y12b{bottom:41.040000px;}
.yd4{bottom:41.220000px;}
.yc4{bottom:41.580000px;}
.yf9{bottom:41.940000px;}
.yaf{bottom:42.660000px;}
.yac{bottom:44.460000px;}
.yce{bottom:50.400000px;}
.yc0{bottom:50.760000px;}
.yb7{bottom:50.940000px;}
.yff{bottom:51.300000px;}
.yd3{bottom:59.580000px;}
.y6{bottom:59.760000px;}
.yc3{bottom:59.940000px;}
.yae{bottom:63.720000px;}
.ycd{bottom:68.760000px;}
.yb6{bottom:69.120000px;}
.yd2{bottom:77.940000px;}
.yc2{bottom:78.300000px;}
.yb9{bottom:87.480000px;}
.y66{bottom:89.496000px;}
.y17d{bottom:92.016000px;}
.y75{bottom:92.556000px;}
.yf3{bottom:98.316000px;}
.y135{bottom:99.576000px;}
.y31{bottom:101.556000px;}
.y161{bottom:102.456000px;}
.y65{bottom:110.556000px;}
.y17c{bottom:113.076000px;}
.y74{bottom:113.616000px;}
.y30{bottom:116.676000px;}
.yf6{bottom:117.396000px;}
.y134{bottom:120.636000px;}
.y9b{bottom:122.616000px;}
.y160{bottom:123.516000px;}
.y64{bottom:131.616000px;}
.y17b{bottom:134.136000px;}
.y73{bottom:134.676000px;}
.y130{bottom:135.756000px;}
.yf5{bottom:136.476000px;}
.y2f{bottom:139.896000px;}
.y9a{bottom:143.676000px;}
.y15f{bottom:144.576000px;}
.y63{bottom:152.670000px;}
.y17a{bottom:155.190000px;}
.yf4{bottom:155.550000px;}
.y72{bottom:155.730000px;}
.y133{bottom:158.970000px;}
.y2e{bottom:163.110000px;}
.y99{bottom:164.730000px;}
.y15e{bottom:165.630000px;}
.y62{bottom:173.730000px;}
.yef{bottom:174.630000px;}
.y179{bottom:176.250000px;}
.y98{bottom:176.790000px;}
.y132{bottom:182.190000px;}
.y71{bottom:185.790000px;}
.y2a{bottom:186.330000px;}
.y15d{bottom:186.690000px;}
.yf2{bottom:193.710000px;}
.y61{bottom:194.790000px;}
.y178{bottom:197.310000px;}
.y97{bottom:197.850000px;}
.y12f{bottom:205.410000px;}
.y70{bottom:206.850000px;}
.y15c{bottom:207.750000px;}
.y2c{bottom:209.730000px;}
.yf1{bottom:212.790000px;}
.y60{bottom:215.850000px;}
.y177{bottom:218.370000px;}
.y96{bottom:218.910000px;}
.y6f{bottom:227.910000px;}
.y12a{bottom:228.630000px;}
.y15b{bottom:228.810000px;}
.yed{bottom:231.870000px;}
.y5f{bottom:236.910000px;}
.y176{bottom:239.430000px;}
.y29{bottom:239.610000px;}
.y95{bottom:239.970000px;}
.y6e{bottom:248.970000px;}
.y15a{bottom:249.870000px;}
.y12e{bottom:252.030000px;}
.y5e{bottom:257.970000px;}
.y175{bottom:260.490000px;}
.y28{bottom:260.670000px;}
.y94{bottom:261.030000px;}
.yec{bottom:261.750000px;}
.y6d{bottom:270.030000px;}
.y159{bottom:270.930000px;}
.y12d{bottom:275.250000px;}
.y5d{bottom:279.030000px;}
.y174{bottom:281.550000px;}
.y27{bottom:281.730000px;}
.y93{bottom:282.090000px;}
.yeb{bottom:282.810000px;}
.y6c{bottom:291.090000px;}
.y158{bottom:291.990000px;}
.y12c{bottom:298.470000px;}
.y5c{bottom:300.090000px;}
.y173{bottom:302.610000px;}
.y26{bottom:302.790000px;}
.y92{bottom:303.150000px;}
.yea{bottom:303.870000px;}
.y6b{bottom:312.150000px;}
.y157{bottom:313.050000px;}
.y5b{bottom:321.150000px;}
.y123{bottom:321.690000px;}
.y172{bottom:323.670000px;}
.y25{bottom:323.850000px;}
.y91{bottom:324.210000px;}
.ye9{bottom:324.930000px;}
.y6a{bottom:333.255000px;}
.y156{bottom:334.155000px;}
.y5a{bottom:342.255000px;}
.y171{bottom:344.775000px;}
.y24{bottom:344.955000px;}
.y90{bottom:345.315000px;}
.ye8{bottom:346.035000px;}
.y69{bottom:354.315000px;}
.y155{bottom:355.215000px;}
.y59{bottom:363.315000px;}
.y170{bottom:365.835000px;}
.y23{bottom:366.015000px;}
.y8f{bottom:366.375000px;}
.ye7{bottom:367.095000px;}
.y126{bottom:368.175000px;}
.y68{bottom:375.375000px;}
.y154{bottom:376.275000px;}
.y58{bottom:384.375000px;}
.y16f{bottom:386.895000px;}
.y22{bottom:387.075000px;}
.y8e{bottom:387.435000px;}
.ye6{bottom:388.155000px;}
.y11c{bottom:391.575000px;}
.y67{bottom:396.435000px;}
.y153{bottom:397.335000px;}
.y57{bottom:405.435000px;}
.y16e{bottom:407.955000px;}
.y21{bottom:408.135000px;}
.y8d{bottom:408.315000px;}
.ye5{bottom:409.215000px;}
.y122{bottom:414.795000px;}
.y152{bottom:418.395000px;}
.y18b{bottom:423.075000px;}
.y56{bottom:426.315000px;}
.y20{bottom:429.195000px;}
.y8c{bottom:429.375000px;}
.ye4{bottom:430.275000px;}
.y121{bottom:438.015000px;}
.y151{bottom:439.455000px;}
.y55{bottom:447.375000px;}
.y1f{bottom:450.255000px;}
.y8b{bottom:450.435000px;}
.ye3{bottom:451.335000px;}
.y150{bottom:460.515000px;}
.y11e{bottom:461.235000px;}
.y18a{bottom:465.915000px;}
.y54{bottom:468.435000px;}
.y1e{bottom:471.315000px;}
.y8a{bottom:471.495000px;}
.ye2{bottom:472.395000px;}
.y192{bottom:480.495000px;}
.y14f{bottom:481.575000px;}
.y11a{bottom:484.455000px;}
.y53{bottom:489.495000px;}
.y1d{bottom:492.375000px;}
.y89{bottom:492.555000px;}
.ye1{bottom:493.275000px;}
.y191{bottom:501.555000px;}
.y14e{bottom:502.635000px;}
.y188{bottom:508.935000px;}
.y52{bottom:510.555000px;}
.y88{bottom:513.615000px;}
.ye0{bottom:514.335000px;}
.y119{bottom:521.535000px;}
.y190{bottom:522.615000px;}
.y14d{bottom:523.695000px;}
.y51{bottom:531.615000px;}
.y87{bottom:534.675000px;}
.ydf{bottom:535.395000px;}
.y1c{bottom:536.835000px;}
.y118{bottom:542.595000px;}
.y18f{bottom:543.675000px;}
.y14c{bottom:544.755000px;}
.y50{bottom:552.675000px;}
.y16d{bottom:552.855000px;}
.y86{bottom:555.735000px;}
.yde{bottom:556.455000px;}
.y117{bottom:563.655000px;}
.y18e{bottom:564.735000px;}
.y14b{bottom:565.635000px;}
.y1b{bottom:566.715000px;}
.y4f{bottom:573.735000px;}
.y16c{bottom:573.915000px;}
.y85{bottom:576.795000px;}
.ydd{bottom:577.515000px;}
.y116{bottom:584.715000px;}
.y18d{bottom:585.795000px;}
.y14a{bottom:586.695000px;}
.y1a{bottom:587.775000px;}
.y4e{bottom:594.795000px;}
.y16b{bottom:594.975000px;}
.y84{bottom:597.885000px;}
.ydc{bottom:598.605000px;}
.y115{bottom:605.805000px;}
.y18c{bottom:606.885000px;}
.y149{bottom:607.785000px;}
.y19{bottom:608.865000px;}
.y4d{bottom:615.885000px;}
.y16a{bottom:616.065000px;}
.ydb{bottom:619.665000px;}
.y114{bottom:626.865000px;}
.y83{bottom:627.945000px;}
.y148{bottom:628.845000px;}
.y18{bottom:629.925000px;}
.y4c{bottom:636.945000px;}
.y169{bottom:637.125000px;}
.yda{bottom:640.725000px;}
.y113{bottom:647.925000px;}
.y82{bottom:649.005000px;}
.y147{bottom:649.905000px;}
.y17{bottom:650.985000px;}
.y4b{bottom:658.005000px;}
.y168{bottom:658.185000px;}
.yd9{bottom:661.785000px;}
.y112{bottom:668.985000px;}
.y81{bottom:670.065000px;}
.y146{bottom:670.965000px;}
.y16{bottom:672.045000px;}
.y4a{bottom:679.065000px;}
.y167{bottom:679.245000px;}
.yd8{bottom:682.845000px;}
.y111{bottom:690.045000px;}
.y80{bottom:691.125000px;}
.y145{bottom:692.025000px;}
.y15{bottom:693.105000px;}
.ycc{bottom:698.145000px;}
.y49{bottom:700.125000px;}
.y166{bottom:700.305000px;}
.y110{bottom:711.105000px;}
.y7f{bottom:712.185000px;}
.y144{bottom:713.085000px;}
.y14{bottom:714.165000px;}
.yd7{bottom:717.045000px;}
.y48{bottom:721.185000px;}
.y165{bottom:721.365000px;}
.y10f{bottom:732.165000px;}
.y7e{bottom:733.245000px;}
.y143{bottom:734.145000px;}
.y13{bottom:735.225000px;}
.y47{bottom:742.245000px;}
.y164{bottom:742.425000px;}
.y10e{bottom:753.225000px;}
.y7d{bottom:754.305000px;}
.yd1{bottom:754.485000px;}
.y142{bottom:755.205000px;}
.y12{bottom:756.285000px;}
.y46{bottom:763.305000px;}
.y163{bottom:763.485000px;}
.y10d{bottom:774.285000px;}
.y7c{bottom:775.365000px;}
.y141{bottom:776.265000px;}
.y11{bottom:777.345000px;}
.y45{bottom:784.365000px;}
.y162{bottom:784.545000px;}
.yc9{bottom:791.925000px;}
.y10c{bottom:795.345000px;}
.y7b{bottom:796.425000px;}
.y140{bottom:797.325000px;}
.y10{bottom:798.405000px;}
.y186{bottom:799.665000px;}
.y44{bottom:805.425000px;}
.y10b{bottom:816.405000px;}
.y7a{bottom:817.485000px;}
.y13f{bottom:818.385000px;}
.yf{bottom:819.465000px;}
.y43{bottom:826.485000px;}
.ycb{bottom:829.185000px;}
.y10a{bottom:837.465000px;}
.y79{bottom:838.545000px;}
.y13e{bottom:839.445000px;}
.ye{bottom:840.525000px;}
.y184{bottom:842.685000px;}
.y42{bottom:847.545000px;}
.y109{bottom:858.525000px;}
.y78{bottom:859.605000px;}
.y13d{bottom:860.505000px;}
.yd{bottom:861.585000px;}
.ya7{bottom:866.670000px;}
.y41{bottom:868.650000px;}
.y105{bottom:873.690000px;}
.y13c{bottom:875.670000px;}
.y77{bottom:880.710000px;}
.yc{bottom:884.850000px;}
.y183{bottom:885.570000px;}
.yca{bottom:885.750000px;}
.y40{bottom:889.710000px;}
.y108{bottom:892.770000px;}
.y13b{bottom:899.070000px;}
.y76{bottom:901.770000px;}
.ybf{bottom:904.830000px;}
.y3f{bottom:910.770000px;}
.yb{bottom:911.130000px;}
.y107{bottom:911.850000px;}
.y9e{bottom:919.590000px;}
.y138{bottom:922.290000px;}
.yc8{bottom:923.910000px;}
.ya{bottom:927.870000px;}
.y182{bottom:928.410000px;}
.y106{bottom:930.930000px;}
.y3e{bottom:931.830000px;}
.yad{bottom:935.430000px;}
.yc7{bottom:942.810000px;}
.y136{bottom:945.510000px;}
.yfe{bottom:949.830000px;}
.y9{bottom:950.190000px;}
.y3d{bottom:952.890000px;}
.yab{bottom:957.390000px;}
.ya8{bottom:961.890000px;}
.y104{bottom:968.910000px;}
.y180{bottom:971.250000px;}
.y3c{bottom:973.950000px;}
.y8{bottom:975.390000px;}
.y102{bottom:987.990000px;}
.ya1{bottom:988.530000px;}
.y3b{bottom:995.010000px;}
.yb0{bottom:997.350000px;}
.yb5{bottom:999.330000px;}
.y7{bottom:1009.050000px;}
.y17e{bottom:1014.090000px;}
.y3a{bottom:1016.070000px;}
.ya2{bottom:1024.350000px;}
.y101{bottom:1025.430000px;}
.ybd{bottom:1036.770000px;}
.y39{bottom:1037.130000px;}
.ya0{bottom:1037.490000px;}
.y100{bottom:1044.510000px;}
.y5{bottom:1049.190000px;}
.y9c{bottom:1054.230000px;}
.y38{bottom:1058.190000px;}
.ya3{bottom:1061.250000px;}
.yf8{bottom:1063.590000px;}
.yb2{bottom:1067.550000px;}
.ybb{bottom:1074.030000px;}
.y37{bottom:1079.250000px;}
.y4{bottom:1081.410000px;}
.yfd{bottom:1082.490000px;}
.y36{bottom:1100.310000px;}
.yfc{bottom:1101.570000px;}
.yb8{bottom:1111.470000px;}
.y3{bottom:1113.630000px;}
.yfb{bottom:1120.650000px;}
.y35{bottom:1121.370000px;}
.yb3{bottom:1130.580000px;}
.yfa{bottom:1139.760000px;}
.y34{bottom:1142.460000px;}
.y2{bottom:1145.700000px;}
.yf7{bottom:1158.840000px;}
.y33{bottom:1163.520000px;}
.y1{bottom:1179.720000px;}
.y32{bottom:1191.780000px;}
.h1b{height:18.180000px;}
.h14{height:18.360000px;}
.h17{height:18.396000px;}
.hb{height:22.500000px;}
.h27{height:22.536000px;}
.he{height:22.860000px;}
.h15{height:25.560000px;}
.h24{height:29.700000px;}
.h2c{height:33.120000px;}
.h2a{height:33.300000px;}
.hd{height:36.000000px;}
.h19{height:36.540000px;}
.h18{height:36.720000px;}
.h1d{height:36.756000px;}
.h7{height:38.671172px;}
.h29{height:42.120000px;}
.h2b{height:42.156000px;}
.ha{height:45.900000px;}
.h11{height:47.700000px;}
.h8{height:48.088125px;}
.h10{height:54.891000px;}
.hf{height:54.900000px;}
.h1f{height:56.340000px;}
.h12{height:58.860000px;}
.h9{height:59.439023px;}
.h5{height:61.189805px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h26{height:68.976000px;}
.hc{height:73.722656px;}
.h23{height:75.420000px;}
.h20{height:75.600000px;}
.h13{height:78.120000px;}
.h2{height:86.255508px;}
.h25{height:92.160000px;}
.h28{height:92.340000px;}
.h1e{height:92.880000px;}
.h1a{height:93.780000px;}
.h21{height:94.536000px;}
.h4{height:98.051133px;}
.h1c{height:111.996000px;}
.h22{height:112.860000px;}
.h16{height:130.536000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1a{width:15.840000px;}
.wf{width:47.160000px;}
.w19{width:53.100000px;}
.w8{width:65.556000px;}
.wa{width:65.700000px;}
.w9{width:65.736000px;}
.w18{width:66.420000px;}
.w26{width:83.160000px;}
.w21{width:84.636000px;}
.w25{width:86.940000px;}
.w24{width:90.216000px;}
.w7{width:96.840000px;}
.w6{width:96.876000px;}
.w12{width:100.440000px;}
.w5{width:107.820000px;}
.w15{width:111.816000px;}
.w10{width:112.356000px;}
.w1f{width:115.416000px;}
.w1b{width:120.456000px;}
.wb{width:123.660000px;}
.w1c{width:126.576000px;}
.wc{width:131.616000px;}
.w23{width:131.796000px;}
.w16{width:134.280000px;}
.wd{width:135.576000px;}
.w1d{width:156.600000px;}
.we{width:168.510000px;}
.w3{width:214.950000px;}
.w13{width:228.990000px;}
.w20{width:229.350000px;}
.w17{width:240.735000px;}
.w14{width:307.470000px;}
.w22{width:313.590000px;}
.w1e{width:336.675000px;}
.w4{width:399.495000px;}
.w11{width:567.285000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:7.740000px;}
.x28{left:10.800000px;}
.x1d{left:14.574000px;}
.x25{left:18.360000px;}
.x20{left:22.500000px;}
.x17{left:24.300000px;}
.x21{left:27.900000px;}
.x1c{left:43.014000px;}
.x1f{left:49.494000px;}
.x6{left:53.999987px;}
.x29{left:55.800000px;}
.x26{left:60.120000px;}
.x1e{left:61.734000px;}
.x11{left:64.799987px;}
.x23{left:67.905000px;}
.x10{left:72.899987px;}
.x3e{left:74.339987px;}
.x7{left:75.599987px;}
.x12{left:91.799987px;}
.x15{left:94.535987px;}
.x3f{left:101.375987px;}
.xf{left:108.035987px;}
.xe{left:135.035987px;}
.x8{left:139.176000px;}
.x1b{left:142.236000px;}
.x2a{left:168.870000px;}
.x5{left:181.469987px;}
.x19{left:274.170000px;}
.x2c{left:283.935000px;}
.x3{left:286.634987px;}
.x2f{left:296.175000px;}
.x13{left:315.614987px;}
.x39{left:326.414987px;}
.x38{left:339.734987px;}
.x2{left:350.534987px;}
.xa{left:354.495000px;}
.x30{left:363.315000px;}
.x27{left:372.315000px;}
.x35{left:391.935000px;}
.x16{left:413.355000px;}
.x18{left:414.615000px;}
.x31{left:417.135000px;}
.x4{left:419.114987px;}
.x32{left:433.695000px;}
.x14{left:446.474987px;}
.x3a{left:449.175000px;}
.xb{left:462.675000px;}
.x1{left:479.264987px;}
.x36{left:508.065000px;}
.x1a{left:509.505000px;}
.x33{left:554.865000px;}
.xc{left:559.905000px;}
.x3b{left:581.685000px;}
.x24{left:588.705000px;}
.x2d{left:592.125000px;}
.x22{left:604.005000px;}
.xd{left:657.105000px;}
.x3c{left:672.630000px;}
.x34{left:682.170000px;}
.x2e{left:704.670000px;}
.x2b{left:736.890000px;}
.x37{left:738.150000px;}
.x3d{left:760.470000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls19{letter-spacing:-0.853333pt;}
.lsf{letter-spacing:-0.709333pt;}
.lsc{letter-spacing:-0.698667pt;}
.ls16{letter-spacing:-0.618667pt;}
.ls15{letter-spacing:-0.586667pt;}
.ls1e{letter-spacing:-0.515200pt;}
.ls25{letter-spacing:-0.484267pt;}
.ls2d{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.412267pt;}
.ls8{letter-spacing:-0.382933pt;}
.ls24{letter-spacing:-0.368000pt;}
.ls2a{letter-spacing:-0.290133pt;}
.ls20{letter-spacing:-0.269333pt;}
.ls1a{letter-spacing:-0.213867pt;}
.ls11{letter-spacing:-0.201600pt;}
.ls4{letter-spacing:-0.117867pt;}
.lsd{letter-spacing:-0.102933pt;}
.ls1c{letter-spacing:-0.095467pt;}
.lse{letter-spacing:-0.051840pt;}
.ls1f{letter-spacing:-0.036480pt;}
.ls29{letter-spacing:-0.033920pt;}
.ls2{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.021120pt;}
.ls3{letter-spacing:0.034560pt;}
.ls10{letter-spacing:0.053867pt;}
.ls0{letter-spacing:0.105600pt;}
.ls6{letter-spacing:0.133333pt;}
.ls2e{letter-spacing:0.150400pt;}
.ls2c{letter-spacing:0.165867pt;}
.ls9{letter-spacing:0.169067pt;}
.ls23{letter-spacing:0.173333pt;}
.ls1b{letter-spacing:0.186133pt;}
.ls7{letter-spacing:0.186667pt;}
.lsb{letter-spacing:0.272000pt;}
.lsa{letter-spacing:0.320000pt;}
.ls21{letter-spacing:0.349867pt;}
.ls28{letter-spacing:0.426240pt;}
.ls13{letter-spacing:0.549120pt;}
.ls22{letter-spacing:0.566400pt;}
.ls2f{letter-spacing:0.586667pt;}
.ls14{letter-spacing:0.912000pt;}
.ls1d{letter-spacing:1.872640pt;}
.ls18{letter-spacing:5.072640pt;}
.ls2b{letter-spacing:10.960640pt;}
.ls26{letter-spacing:15.952640pt;}
.ls12{letter-spacing:19.152640pt;}
.ls1{letter-spacing:33.872640pt;}
.ls27{letter-spacing:37.840640pt;}
.ws4{word-spacing:-19.342720pt;}
.ws0{word-spacing:-16.957440pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws2{word-spacing:-12.894613pt;}
.ws16{word-spacing:-12.591787pt;}
.ws14{word-spacing:-12.277120pt;}
.wsc{word-spacing:-12.191253pt;}
.ws11{word-spacing:-12.178453pt;}
.ws13{word-spacing:-12.170987pt;}
.ws15{word-spacing:-12.155520pt;}
.ws8{word-spacing:-12.005120pt;}
.ws12{word-spacing:-11.971200pt;}
.wsf{word-spacing:-11.968640pt;}
.wsa{word-spacing:-11.953280pt;}
.wsd{word-spacing:-11.909653pt;}
.ws9{word-spacing:-11.902187pt;}
.wse{word-spacing:-11.791253pt;}
.ws10{word-spacing:-11.735787pt;}
.ws5{word-spacing:-8.389120pt;}
.ws7{word-spacing:-8.130560pt;}
.ws6{word-spacing:-7.810560pt;}
.wsb{word-spacing:0.000000pt;}
._1e{margin-left:-473.705387pt;}
._1f{margin-left:-469.386240pt;}
._1{margin-left:-433.669547pt;}
._6{margin-left:-363.781547pt;}
._8{margin-left:-272.408107pt;}
._12{margin-left:-259.706880pt;}
._4{margin-left:-257.148587pt;}
._5{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._17{margin-left:-220.436480pt;}
._b{margin-left:-213.786880pt;}
._16{margin-left:-198.021333pt;}
._22{margin-left:-190.878720pt;}
._f{margin-left:-180.453547pt;}
._19{margin-left:-179.069440pt;}
._18{margin-left:-177.979307pt;}
._21{margin-left:-168.954880pt;}
._e{margin-left:-152.048640pt;}
._26{margin-left:-150.899200pt;}
._d{margin-left:-146.952960pt;}
._10{margin-left:-142.007467pt;}
._9{margin-left:-136.688640pt;}
._3{margin-left:-133.346133pt;}
._a{margin-left:-132.019200pt;}
._25{margin-left:-128.981333pt;}
._c{margin-left:-119.281920pt;}
._20{margin-left:-118.232320pt;}
._23{margin-left:-107.006720pt;}
._11{margin-left:-102.686720pt;}
._24{margin-left:-97.253547pt;}
._1d{margin-left:-91.137280pt;}
._7{margin-left:-80.999893pt;}
._1c{margin-left:-76.799787pt;}
._1b{margin-left:-74.240000pt;}
._13{margin-left:-72.312320pt;}
._15{margin-left:-59.292160pt;}
._14{margin-left:-43.665707pt;}
._1a{margin-left:-28.026880pt;}
._28{margin-left:-4.291200pt;}
._27{margin-left:-2.618880pt;}
._2{margin-left:-1.198080pt;}
._29{width:1.111467pt;}
._2b{width:2.285867pt;}
._33{width:3.269760pt;}
._2f{width:4.780800pt;}
._2e{width:5.790080pt;}
._30{width:7.015893pt;}
._31{width:7.906773pt;}
._2d{width:9.532800pt;}
._2c{width:10.438400pt;}
._35{width:13.067520pt;}
._36{width:14.245973pt;}
._32{width:15.139200pt;}
._34{width:16.839040pt;}
._3a{width:18.027307pt;}
._39{width:19.441920pt;}
._2a{width:20.338773pt;}
._37{width:21.619840pt;}
._38{width:22.522880pt;}
._3c{width:66.718720pt;}
._3f{width:86.585600pt;}
._3b{width:101.512320pt;}
._3d{width:103.424640pt;}
._3e{width:111.445760pt;}
._42{width:141.192960pt;}
._41{width:142.414720pt;}
._40{width:223.316907pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.ya6{bottom:-14.560000pt;}
.y0{bottom:0.000000pt;}
.yb1{bottom:3.520000pt;}
.yd6{bottom:4.160000pt;}
.yc6{bottom:4.480000pt;}
.yee{bottom:5.280000pt;}
.y11f{bottom:5.440000pt;}
.y2d{bottom:5.920000pt;}
.y139{bottom:6.560000pt;}
.yb4{bottom:6.720000pt;}
.y120{bottom:7.200000pt;}
.y129{bottom:7.240000pt;}
.y128{bottom:7.360000pt;}
.y9f{bottom:7.680000pt;}
.y11b{bottom:8.640000pt;}
.y13a{bottom:9.920000pt;}
.yaa{bottom:11.040000pt;}
.y189{bottom:11.200000pt;}
.y17f{bottom:11.360000pt;}
.y103{bottom:11.680000pt;}
.yd0{bottom:12.320000pt;}
.y181{bottom:15.200000pt;}
.y187{bottom:15.360000pt;}
.y2b{bottom:16.960000pt;}
.ya5{bottom:17.440000pt;}
.y125{bottom:17.960000pt;}
.y9d{bottom:19.360000pt;}
.ybe{bottom:19.680000pt;}
.ybc{bottom:19.840000pt;}
.yd5{bottom:20.320000pt;}
.yf0{bottom:20.480000pt;}
.yc5{bottom:20.800000pt;}
.y137{bottom:24.640000pt;}
.y185{bottom:24.680000pt;}
.y127{bottom:26.120000pt;}
.ycf{bottom:28.480000pt;}
.yc1{bottom:28.800000pt;}
.yba{bottom:28.960000pt;}
.ya9{bottom:29.600000pt;}
.y124{bottom:34.280000pt;}
.ya4{bottom:36.000000pt;}
.y131{bottom:36.314667pt;}
.y11d{bottom:36.320000pt;}
.y12b{bottom:36.480000pt;}
.yd4{bottom:36.640000pt;}
.yc4{bottom:36.960000pt;}
.yf9{bottom:37.280000pt;}
.yaf{bottom:37.920000pt;}
.yac{bottom:39.520000pt;}
.yce{bottom:44.800000pt;}
.yc0{bottom:45.120000pt;}
.yb7{bottom:45.280000pt;}
.yff{bottom:45.600000pt;}
.yd3{bottom:52.960000pt;}
.y6{bottom:53.120000pt;}
.yc3{bottom:53.280000pt;}
.yae{bottom:56.640000pt;}
.ycd{bottom:61.120000pt;}
.yb6{bottom:61.440000pt;}
.yd2{bottom:69.280000pt;}
.yc2{bottom:69.600000pt;}
.yb9{bottom:77.760000pt;}
.y66{bottom:79.552000pt;}
.y17d{bottom:81.792000pt;}
.y75{bottom:82.272000pt;}
.yf3{bottom:87.392000pt;}
.y135{bottom:88.512000pt;}
.y31{bottom:90.272000pt;}
.y161{bottom:91.072000pt;}
.y65{bottom:98.272000pt;}
.y17c{bottom:100.512000pt;}
.y74{bottom:100.992000pt;}
.y30{bottom:103.712000pt;}
.yf6{bottom:104.352000pt;}
.y134{bottom:107.232000pt;}
.y9b{bottom:108.992000pt;}
.y160{bottom:109.792000pt;}
.y64{bottom:116.992000pt;}
.y17b{bottom:119.232000pt;}
.y73{bottom:119.712000pt;}
.y130{bottom:120.672000pt;}
.yf5{bottom:121.312000pt;}
.y2f{bottom:124.352000pt;}
.y9a{bottom:127.712000pt;}
.y15f{bottom:128.512000pt;}
.y63{bottom:135.706667pt;}
.y17a{bottom:137.946667pt;}
.yf4{bottom:138.266667pt;}
.y72{bottom:138.426667pt;}
.y133{bottom:141.306667pt;}
.y2e{bottom:144.986667pt;}
.y99{bottom:146.426667pt;}
.y15e{bottom:147.226667pt;}
.y62{bottom:154.426667pt;}
.yef{bottom:155.226667pt;}
.y179{bottom:156.666667pt;}
.y98{bottom:157.146667pt;}
.y132{bottom:161.946667pt;}
.y71{bottom:165.146667pt;}
.y2a{bottom:165.626667pt;}
.y15d{bottom:165.946667pt;}
.yf2{bottom:172.186667pt;}
.y61{bottom:173.146667pt;}
.y178{bottom:175.386667pt;}
.y97{bottom:175.866667pt;}
.y12f{bottom:182.586667pt;}
.y70{bottom:183.866667pt;}
.y15c{bottom:184.666667pt;}
.y2c{bottom:186.426667pt;}
.yf1{bottom:189.146667pt;}
.y60{bottom:191.866667pt;}
.y177{bottom:194.106667pt;}
.y96{bottom:194.586667pt;}
.y6f{bottom:202.586667pt;}
.y12a{bottom:203.226667pt;}
.y15b{bottom:203.386667pt;}
.yed{bottom:206.106667pt;}
.y5f{bottom:210.586667pt;}
.y176{bottom:212.826667pt;}
.y29{bottom:212.986667pt;}
.y95{bottom:213.306667pt;}
.y6e{bottom:221.306667pt;}
.y15a{bottom:222.106667pt;}
.y12e{bottom:224.026667pt;}
.y5e{bottom:229.306667pt;}
.y175{bottom:231.546667pt;}
.y28{bottom:231.706667pt;}
.y94{bottom:232.026667pt;}
.yec{bottom:232.666667pt;}
.y6d{bottom:240.026667pt;}
.y159{bottom:240.826667pt;}
.y12d{bottom:244.666667pt;}
.y5d{bottom:248.026667pt;}
.y174{bottom:250.266667pt;}
.y27{bottom:250.426667pt;}
.y93{bottom:250.746667pt;}
.yeb{bottom:251.386667pt;}
.y6c{bottom:258.746667pt;}
.y158{bottom:259.546667pt;}
.y12c{bottom:265.306667pt;}
.y5c{bottom:266.746667pt;}
.y173{bottom:268.986667pt;}
.y26{bottom:269.146667pt;}
.y92{bottom:269.466667pt;}
.yea{bottom:270.106667pt;}
.y6b{bottom:277.466667pt;}
.y157{bottom:278.266667pt;}
.y5b{bottom:285.466667pt;}
.y123{bottom:285.946667pt;}
.y172{bottom:287.706667pt;}
.y25{bottom:287.866667pt;}
.y91{bottom:288.186667pt;}
.ye9{bottom:288.826667pt;}
.y6a{bottom:296.226667pt;}
.y156{bottom:297.026667pt;}
.y5a{bottom:304.226667pt;}
.y171{bottom:306.466667pt;}
.y24{bottom:306.626667pt;}
.y90{bottom:306.946667pt;}
.ye8{bottom:307.586667pt;}
.y69{bottom:314.946667pt;}
.y155{bottom:315.746667pt;}
.y59{bottom:322.946667pt;}
.y170{bottom:325.186667pt;}
.y23{bottom:325.346667pt;}
.y8f{bottom:325.666667pt;}
.ye7{bottom:326.306667pt;}
.y126{bottom:327.266667pt;}
.y68{bottom:333.666667pt;}
.y154{bottom:334.466667pt;}
.y58{bottom:341.666667pt;}
.y16f{bottom:343.906667pt;}
.y22{bottom:344.066667pt;}
.y8e{bottom:344.386667pt;}
.ye6{bottom:345.026667pt;}
.y11c{bottom:348.066667pt;}
.y67{bottom:352.386667pt;}
.y153{bottom:353.186667pt;}
.y57{bottom:360.386667pt;}
.y16e{bottom:362.626667pt;}
.y21{bottom:362.786667pt;}
.y8d{bottom:362.946667pt;}
.ye5{bottom:363.746667pt;}
.y122{bottom:368.706667pt;}
.y152{bottom:371.906667pt;}
.y18b{bottom:376.066667pt;}
.y56{bottom:378.946667pt;}
.y20{bottom:381.506667pt;}
.y8c{bottom:381.666667pt;}
.ye4{bottom:382.466667pt;}
.y121{bottom:389.346667pt;}
.y151{bottom:390.626667pt;}
.y55{bottom:397.666667pt;}
.y1f{bottom:400.226667pt;}
.y8b{bottom:400.386667pt;}
.ye3{bottom:401.186667pt;}
.y150{bottom:409.346667pt;}
.y11e{bottom:409.986667pt;}
.y18a{bottom:414.146667pt;}
.y54{bottom:416.386667pt;}
.y1e{bottom:418.946667pt;}
.y8a{bottom:419.106667pt;}
.ye2{bottom:419.906667pt;}
.y192{bottom:427.106667pt;}
.y14f{bottom:428.066667pt;}
.y11a{bottom:430.626667pt;}
.y53{bottom:435.106667pt;}
.y1d{bottom:437.666667pt;}
.y89{bottom:437.826667pt;}
.ye1{bottom:438.466667pt;}
.y191{bottom:445.826667pt;}
.y14e{bottom:446.786667pt;}
.y188{bottom:452.386667pt;}
.y52{bottom:453.826667pt;}
.y88{bottom:456.546667pt;}
.ye0{bottom:457.186667pt;}
.y119{bottom:463.586667pt;}
.y190{bottom:464.546667pt;}
.y14d{bottom:465.506667pt;}
.y51{bottom:472.546667pt;}
.y87{bottom:475.266667pt;}
.ydf{bottom:475.906667pt;}
.y1c{bottom:477.186667pt;}
.y118{bottom:482.306667pt;}
.y18f{bottom:483.266667pt;}
.y14c{bottom:484.226667pt;}
.y50{bottom:491.266667pt;}
.y16d{bottom:491.426667pt;}
.y86{bottom:493.986667pt;}
.yde{bottom:494.626667pt;}
.y117{bottom:501.026667pt;}
.y18e{bottom:501.986667pt;}
.y14b{bottom:502.786667pt;}
.y1b{bottom:503.746667pt;}
.y4f{bottom:509.986667pt;}
.y16c{bottom:510.146667pt;}
.y85{bottom:512.706667pt;}
.ydd{bottom:513.346667pt;}
.y116{bottom:519.746667pt;}
.y18d{bottom:520.706667pt;}
.y14a{bottom:521.506667pt;}
.y1a{bottom:522.466667pt;}
.y4e{bottom:528.706667pt;}
.y16b{bottom:528.866667pt;}
.y84{bottom:531.453333pt;}
.ydc{bottom:532.093333pt;}
.y115{bottom:538.493333pt;}
.y18c{bottom:539.453333pt;}
.y149{bottom:540.253333pt;}
.y19{bottom:541.213333pt;}
.y4d{bottom:547.453333pt;}
.y16a{bottom:547.613333pt;}
.ydb{bottom:550.813333pt;}
.y114{bottom:557.213333pt;}
.y83{bottom:558.173333pt;}
.y148{bottom:558.973333pt;}
.y18{bottom:559.933333pt;}
.y4c{bottom:566.173333pt;}
.y169{bottom:566.333333pt;}
.yda{bottom:569.533333pt;}
.y113{bottom:575.933333pt;}
.y82{bottom:576.893333pt;}
.y147{bottom:577.693333pt;}
.y17{bottom:578.653333pt;}
.y4b{bottom:584.893333pt;}
.y168{bottom:585.053333pt;}
.yd9{bottom:588.253333pt;}
.y112{bottom:594.653333pt;}
.y81{bottom:595.613333pt;}
.y146{bottom:596.413333pt;}
.y16{bottom:597.373333pt;}
.y4a{bottom:603.613333pt;}
.y167{bottom:603.773333pt;}
.yd8{bottom:606.973333pt;}
.y111{bottom:613.373333pt;}
.y80{bottom:614.333333pt;}
.y145{bottom:615.133333pt;}
.y15{bottom:616.093333pt;}
.ycc{bottom:620.573333pt;}
.y49{bottom:622.333333pt;}
.y166{bottom:622.493333pt;}
.y110{bottom:632.093333pt;}
.y7f{bottom:633.053333pt;}
.y144{bottom:633.853333pt;}
.y14{bottom:634.813333pt;}
.yd7{bottom:637.373333pt;}
.y48{bottom:641.053333pt;}
.y165{bottom:641.213333pt;}
.y10f{bottom:650.813333pt;}
.y7e{bottom:651.773333pt;}
.y143{bottom:652.573333pt;}
.y13{bottom:653.533333pt;}
.y47{bottom:659.773333pt;}
.y164{bottom:659.933333pt;}
.y10e{bottom:669.533333pt;}
.y7d{bottom:670.493333pt;}
.yd1{bottom:670.653333pt;}
.y142{bottom:671.293333pt;}
.y12{bottom:672.253333pt;}
.y46{bottom:678.493333pt;}
.y163{bottom:678.653333pt;}
.y10d{bottom:688.253333pt;}
.y7c{bottom:689.213333pt;}
.y141{bottom:690.013333pt;}
.y11{bottom:690.973333pt;}
.y45{bottom:697.213333pt;}
.y162{bottom:697.373333pt;}
.yc9{bottom:703.933333pt;}
.y10c{bottom:706.973333pt;}
.y7b{bottom:707.933333pt;}
.y140{bottom:708.733333pt;}
.y10{bottom:709.693333pt;}
.y186{bottom:710.813333pt;}
.y44{bottom:715.933333pt;}
.y10b{bottom:725.693333pt;}
.y7a{bottom:726.653333pt;}
.y13f{bottom:727.453333pt;}
.yf{bottom:728.413333pt;}
.y43{bottom:734.653333pt;}
.ycb{bottom:737.053333pt;}
.y10a{bottom:744.413333pt;}
.y79{bottom:745.373333pt;}
.y13e{bottom:746.173333pt;}
.ye{bottom:747.133333pt;}
.y184{bottom:749.053333pt;}
.y42{bottom:753.373333pt;}
.y109{bottom:763.133333pt;}
.y78{bottom:764.093333pt;}
.y13d{bottom:764.893333pt;}
.yd{bottom:765.853333pt;}
.ya7{bottom:770.373333pt;}
.y41{bottom:772.133333pt;}
.y105{bottom:776.613333pt;}
.y13c{bottom:778.373333pt;}
.y77{bottom:782.853333pt;}
.yc{bottom:786.533333pt;}
.y183{bottom:787.173333pt;}
.yca{bottom:787.333333pt;}
.y40{bottom:790.853333pt;}
.y108{bottom:793.573333pt;}
.y13b{bottom:799.173333pt;}
.y76{bottom:801.573333pt;}
.ybf{bottom:804.293333pt;}
.y3f{bottom:809.573333pt;}
.yb{bottom:809.893333pt;}
.y107{bottom:810.533333pt;}
.y9e{bottom:817.413333pt;}
.y138{bottom:819.813333pt;}
.yc8{bottom:821.253333pt;}
.ya{bottom:824.773333pt;}
.y182{bottom:825.253333pt;}
.y106{bottom:827.493333pt;}
.y3e{bottom:828.293333pt;}
.yad{bottom:831.493333pt;}
.yc7{bottom:838.053333pt;}
.y136{bottom:840.453333pt;}
.yfe{bottom:844.293333pt;}
.y9{bottom:844.613333pt;}
.y3d{bottom:847.013333pt;}
.yab{bottom:851.013333pt;}
.ya8{bottom:855.013333pt;}
.y104{bottom:861.253333pt;}
.y180{bottom:863.333333pt;}
.y3c{bottom:865.733333pt;}
.y8{bottom:867.013333pt;}
.y102{bottom:878.213333pt;}
.ya1{bottom:878.693333pt;}
.y3b{bottom:884.453333pt;}
.yb0{bottom:886.533333pt;}
.yb5{bottom:888.293333pt;}
.y7{bottom:896.933333pt;}
.y17e{bottom:901.413333pt;}
.y3a{bottom:903.173333pt;}
.ya2{bottom:910.533333pt;}
.y101{bottom:911.493333pt;}
.ybd{bottom:921.573333pt;}
.y39{bottom:921.893333pt;}
.ya0{bottom:922.213333pt;}
.y100{bottom:928.453333pt;}
.y5{bottom:932.613333pt;}
.y9c{bottom:937.093333pt;}
.y38{bottom:940.613333pt;}
.ya3{bottom:943.333333pt;}
.yf8{bottom:945.413333pt;}
.yb2{bottom:948.933333pt;}
.ybb{bottom:954.693333pt;}
.y37{bottom:959.333333pt;}
.y4{bottom:961.253333pt;}
.yfd{bottom:962.213333pt;}
.y36{bottom:978.053333pt;}
.yfc{bottom:979.173333pt;}
.yb8{bottom:987.973333pt;}
.y3{bottom:989.893333pt;}
.yfb{bottom:996.133333pt;}
.y35{bottom:996.773333pt;}
.yb3{bottom:1004.960000pt;}
.yfa{bottom:1013.120000pt;}
.y34{bottom:1015.520000pt;}
.y2{bottom:1018.400000pt;}
.yf7{bottom:1030.080000pt;}
.y33{bottom:1034.240000pt;}
.y1{bottom:1048.640000pt;}
.y32{bottom:1059.360000pt;}
.h1b{height:16.160000pt;}
.h14{height:16.320000pt;}
.h17{height:16.352000pt;}
.hb{height:20.000000pt;}
.h27{height:20.032000pt;}
.he{height:20.320000pt;}
.h15{height:22.720000pt;}
.h24{height:26.400000pt;}
.h2c{height:29.440000pt;}
.h2a{height:29.600000pt;}
.hd{height:32.000000pt;}
.h19{height:32.480000pt;}
.h18{height:32.640000pt;}
.h1d{height:32.672000pt;}
.h7{height:34.374375pt;}
.h29{height:37.440000pt;}
.h2b{height:37.472000pt;}
.ha{height:40.800000pt;}
.h11{height:42.400000pt;}
.h8{height:42.745000pt;}
.h10{height:48.792000pt;}
.hf{height:48.800000pt;}
.h1f{height:50.080000pt;}
.h12{height:52.320000pt;}
.h9{height:52.834688pt;}
.h5{height:54.390938pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h26{height:61.312000pt;}
.hc{height:65.531250pt;}
.h23{height:67.040000pt;}
.h20{height:67.200000pt;}
.h13{height:69.440000pt;}
.h2{height:76.671562pt;}
.h25{height:81.920000pt;}
.h28{height:82.080000pt;}
.h1e{height:82.560000pt;}
.h1a{height:83.360000pt;}
.h21{height:84.032000pt;}
.h4{height:87.156562pt;}
.h1c{height:99.552000pt;}
.h22{height:100.320000pt;}
.h16{height:116.032000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1a{width:14.080000pt;}
.wf{width:41.920000pt;}
.w19{width:47.200000pt;}
.w8{width:58.272000pt;}
.wa{width:58.400000pt;}
.w9{width:58.432000pt;}
.w18{width:59.040000pt;}
.w26{width:73.920000pt;}
.w21{width:75.232000pt;}
.w25{width:77.280000pt;}
.w24{width:80.192000pt;}
.w7{width:86.080000pt;}
.w6{width:86.112000pt;}
.w12{width:89.280000pt;}
.w5{width:95.840000pt;}
.w15{width:99.392000pt;}
.w10{width:99.872000pt;}
.w1f{width:102.592000pt;}
.w1b{width:107.072000pt;}
.wb{width:109.920000pt;}
.w1c{width:112.512000pt;}
.wc{width:116.992000pt;}
.w23{width:117.152000pt;}
.w16{width:119.360000pt;}
.wd{width:120.512000pt;}
.w1d{width:139.200000pt;}
.we{width:149.786667pt;}
.w3{width:191.066667pt;}
.w13{width:203.546667pt;}
.w20{width:203.866667pt;}
.w17{width:213.986667pt;}
.w14{width:273.306667pt;}
.w22{width:278.746667pt;}
.w1e{width:299.266667pt;}
.w4{width:355.106667pt;}
.w11{width:504.253333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:6.880000pt;}
.x28{left:9.600000pt;}
.x1d{left:12.954667pt;}
.x25{left:16.320000pt;}
.x20{left:20.000000pt;}
.x17{left:21.600000pt;}
.x21{left:24.800000pt;}
.x1c{left:38.234667pt;}
.x1f{left:43.994667pt;}
.x6{left:47.999988pt;}
.x29{left:49.600000pt;}
.x26{left:53.440000pt;}
.x1e{left:54.874667pt;}
.x11{left:57.599988pt;}
.x23{left:60.360000pt;}
.x10{left:64.799988pt;}
.x3e{left:66.079988pt;}
.x7{left:67.199988pt;}
.x12{left:81.599988pt;}
.x15{left:84.031988pt;}
.x3f{left:90.111988pt;}
.xf{left:96.031988pt;}
.xe{left:120.031988pt;}
.x8{left:123.712000pt;}
.x1b{left:126.432000pt;}
.x2a{left:150.106667pt;}
.x5{left:161.306655pt;}
.x19{left:243.706667pt;}
.x2c{left:252.386667pt;}
.x3{left:254.786655pt;}
.x2f{left:263.266667pt;}
.x13{left:280.546655pt;}
.x39{left:290.146655pt;}
.x38{left:301.986655pt;}
.x2{left:311.586655pt;}
.xa{left:315.106667pt;}
.x30{left:322.946667pt;}
.x27{left:330.946667pt;}
.x35{left:348.386667pt;}
.x16{left:367.426667pt;}
.x18{left:368.546667pt;}
.x31{left:370.786667pt;}
.x4{left:372.546655pt;}
.x32{left:385.506667pt;}
.x14{left:396.866655pt;}
.x3a{left:399.266667pt;}
.xb{left:411.266667pt;}
.x1{left:426.013322pt;}
.x36{left:451.613333pt;}
.x1a{left:452.893333pt;}
.x33{left:493.213333pt;}
.xc{left:497.693333pt;}
.x3b{left:517.053333pt;}
.x24{left:523.293333pt;}
.x2d{left:526.333333pt;}
.x22{left:536.893333pt;}
.xd{left:584.093333pt;}
.x3c{left:597.893333pt;}
.x34{left:606.373333pt;}
.x2e{left:626.373333pt;}
.x2b{left:655.013333pt;}
.x37{left:656.133333pt;}
.x3d{left:675.973333pt;}
}




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