
    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_28e9db3d164f06b985ec9011.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_47de5a37c4186b896447ba7e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106934;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_7aed91e5b1d12077af1234ab.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_20af007e52b95d99c691c073.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.808105;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_bbf43c3c33f84a45e09c640f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_7a3add08be6dd523a048a25f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.966797;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_fb543daf7109e123425a5d78.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_9a8303bfcd93dc3a3fa2db84.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_cdbae2fd8380105c03f485b9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.941406;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_07e12df47a16b98903eaa707.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.948242;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_05f003fa15c218b49fbca8d8.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls24{letter-spacing:-1.692000px;}
.ls23{letter-spacing:-0.519000px;}
.ls7{letter-spacing:-0.192000px;}
.lsb{letter-spacing:-0.144000px;}
.ls9{letter-spacing:-0.008312px;}
.ls4{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.000255px;}
.lsc{letter-spacing:0.004560px;}
.ls1{letter-spacing:0.018000px;}
.ls1a{letter-spacing:0.519000px;}
.ls11{letter-spacing:0.654000px;}
.ls1e{letter-spacing:0.714000px;}
.ls15{letter-spacing:0.846000px;}
.ls14{letter-spacing:0.978000px;}
.ls22{letter-spacing:1.170000px;}
.ls2{letter-spacing:1.248000px;}
.ls10{letter-spacing:1.254000px;}
.ls3{letter-spacing:1.308000px;}
.ls1c{letter-spacing:1.368000px;}
.lse{letter-spacing:1.428000px;}
.ls0{letter-spacing:1.476000px;}
.ls6{letter-spacing:1.488000px;}
.ls1d{letter-spacing:1.500000px;}
.ls5{letter-spacing:1.518000px;}
.ls20{letter-spacing:2.094000px;}
.ls8{letter-spacing:2.154000px;}
.ls13{letter-spacing:2.346000px;}
.ls19{letter-spacing:2.808000px;}
.ls12{letter-spacing:3.522000px;}
.ls17{letter-spacing:3.654000px;}
.ls16{letter-spacing:5.154000px;}
.ls18{letter-spacing:6.654000px;}
.lsf{letter-spacing:9.654000px;}
.ls1b{letter-spacing:11.154000px;}
.ls21{letter-spacing:26.808000px;}
.ls1f{letter-spacing:92.988000px;}
.lsd{letter-spacing:95.928000px;}
.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;}
}
.ws1{word-spacing:-31.536000px;}
.ws12{word-spacing:-19.368000px;}
.ws13{word-spacing:-18.192000px;}
.ws7{word-spacing:-18.000000px;}
.ws17{word-spacing:-17.346000px;}
.ws6{word-spacing:-17.154000px;}
.ws11{word-spacing:-17.100000px;}
.ws18{word-spacing:-17.016000px;}
.ws14{word-spacing:-16.824000px;}
.ws15{word-spacing:-16.692000px;}
.ws2{word-spacing:-16.530000px;}
.ws3{word-spacing:-16.500000px;}
.ws16{word-spacing:-16.365000px;}
.ws5{word-spacing:-15.846000px;}
.ws10{word-spacing:-15.654000px;}
.ws19{word-spacing:-15.327000px;}
.ws0{word-spacing:-15.012000px;}
.ws8{word-spacing:-15.003689px;}
.ws9{word-spacing:-14.868000px;}
.ws1a{word-spacing:-14.154000px;}
.wsa{word-spacing:0.000000px;}
.wse{word-spacing:0.053745px;}
.wsf{word-spacing:0.074639px;}
.wsc{word-spacing:0.180000px;}
.wsd{word-spacing:0.402000px;}
.wsb{word-spacing:1.404000px;}
.ws4{word-spacing:4.692000px;}
._21{margin-left:-10.089000px;}
._1b{margin-left:-8.958000px;}
._2d{margin-left:-7.416000px;}
._2e{margin-left:-5.853000px;}
._1c{margin-left:-4.422000px;}
._16{margin-left:-3.276000px;}
._0{margin-left:-1.440000px;}
._1{width:1.296000px;}
._2{width:3.210000px;}
._3{width:5.046000px;}
._4{width:6.078000px;}
._5{width:8.040000px;}
._e{width:9.486000px;}
._d{width:11.280000px;}
._c{width:12.690000px;}
._b{width:13.938000px;}
._7{width:16.374000px;}
._6{width:18.390000px;}
._8{width:19.944000px;}
._14{width:21.579000px;}
._a{width:22.806000px;}
._9{width:24.198000px;}
._15{width:25.338000px;}
._22{width:26.835000px;}
._1a{width:28.926000px;}
._19{width:29.985000px;}
._13{width:31.194000px;}
._11{width:32.727000px;}
._12{width:33.771000px;}
._17{width:36.075000px;}
._25{width:37.083000px;}
._24{width:39.015000px;}
._26{width:40.038000px;}
._2a{width:41.718000px;}
._1d{width:42.768000px;}
._1e{width:44.994000px;}
._31{width:45.996000px;}
._23{width:47.070000px;}
._2c{width:48.999000px;}
._2f{width:50.181000px;}
._2b{width:51.471000px;}
._28{width:52.668000px;}
._34{width:53.811000px;}
._27{width:55.233000px;}
._29{width:56.622000px;}
._38{width:60.459000px;}
._37{width:61.491000px;}
._35{width:67.479000px;}
._10{width:68.652000px;}
._f{width:70.176000px;}
._20{width:73.848000px;}
._1f{width:76.218000px;}
._32{width:77.943000px;}
._18{width:80.040000px;}
._36{width:81.684000px;}
._33{width:92.793000px;}
._30{width:142.872000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:51.000000px;}
.fs1{font-size:54.000000px;}
.fs2{font-size:57.000000px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y32{bottom:2.850000px;}
.y35{bottom:3.750000px;}
.y38{bottom:4.500000px;}
.y31{bottom:18.240000px;}
.y37{bottom:19.500000px;}
.y2f{bottom:26.432400px;}
.y30{bottom:33.930000px;}
.y34{bottom:49.500000px;}
.y33{bottom:50.372400px;}
.yf9{bottom:112.162500px;}
.ye1{bottom:113.662500px;}
.yc0{bottom:114.037500px;}
.y150{bottom:115.537500px;}
.y9c{bottom:118.162500px;}
.yf8{bottom:129.787500px;}
.ye0{bottom:130.912500px;}
.ybf{bottom:131.287500px;}
.y14f{bottom:132.787500px;}
.y9b{bottom:135.412500px;}
.y178{bottom:138.787500px;}
.y70{bottom:139.162500px;}
.ydf{bottom:148.162500px;}
.ybe{bottom:148.537500px;}
.y14e{bottom:150.045000px;}
.y9a{bottom:152.670000px;}
.y177{bottom:156.045000px;}
.y6f{bottom:156.420000px;}
.yf7{bottom:161.655000px;}
.yde{bottom:165.405000px;}
.ybd{bottom:165.780000px;}
.y14d{bottom:167.295000px;}
.y99{bottom:169.920000px;}
.y6e{bottom:173.670000px;}
.yf6{bottom:177.045000px;}
.ydd{bottom:182.700000px;}
.ybc{bottom:183.075000px;}
.y14c{bottom:184.575000px;}
.y98{bottom:187.200000px;}
.y6d{bottom:190.950000px;}
.yf5{bottom:192.450000px;}
.ydc{bottom:199.950000px;}
.ybb{bottom:200.325000px;}
.y14b{bottom:201.825000px;}
.y97{bottom:204.450000px;}
.y6c{bottom:208.200000px;}
.ydb{bottom:217.200000px;}
.yba{bottom:217.575000px;}
.y14a{bottom:219.075000px;}
.y96{bottom:221.700000px;}
.y165{bottom:225.075000px;}
.y6b{bottom:225.450000px;}
.y119{bottom:233.325000px;}
.yb9{bottom:234.450000px;}
.y149{bottom:236.700000px;}
.y95{bottom:238.950000px;}
.y164{bottom:242.325000px;}
.y6a{bottom:242.700000px;}
.y118{bottom:250.575000px;}
.yda{bottom:251.325000px;}
.yb8{bottom:251.700000px;}
.y148{bottom:253.950000px;}
.y94{bottom:255.825000px;}
.y69{bottom:259.950000px;}
.y163{bottom:260.325000px;}
.y117{bottom:267.825000px;}
.yd9{bottom:268.575000px;}
.yb7{bottom:268.950000px;}
.y147{bottom:271.200000px;}
.y93{bottom:273.075000px;}
.y176{bottom:277.200000px;}
.y162{bottom:277.575000px;}
.y2d{bottom:283.575000px;}
.y116{bottom:285.075000px;}
.y24{bottom:285.450000px;}
.yd8{bottom:285.825000px;}
.yb6{bottom:286.200000px;}
.y146{bottom:288.450000px;}
.y92{bottom:290.325000px;}
.y68{bottom:292.200000px;}
.y161{bottom:294.825000px;}
.y2c{bottom:300.450000px;}
.y115{bottom:302.325000px;}
.y23{bottom:302.700000px;}
.yd7{bottom:303.075000px;}
.yb5{bottom:303.450000px;}
.y145{bottom:305.700000px;}
.y91{bottom:307.575000px;}
.y175{bottom:311.745000px;}
.y160{bottom:312.120000px;}
.y2b{bottom:317.730000px;}
.y114{bottom:319.620000px;}
.y22{bottom:319.995000px;}
.yd6{bottom:320.370000px;}
.yb4{bottom:320.730000px;}
.y144{bottom:322.995000px;}
.y90{bottom:324.855000px;}
.y174{bottom:328.995000px;}
.y15f{bottom:329.370000px;}
.y2a{bottom:334.980000px;}
.y113{bottom:336.870000px;}
.y21{bottom:337.245000px;}
.yd5{bottom:337.605000px;}
.yb3{bottom:337.980000px;}
.y67{bottom:338.745000px;}
.y143{bottom:340.245000px;}
.y8f{bottom:342.120000px;}
.y173{bottom:345.870000px;}
.y15e{bottom:346.620000px;}
.y29{bottom:352.245000px;}
.y112{bottom:354.120000px;}
.y20{bottom:354.480000px;}
.yd4{bottom:354.855000px;}
.yb2{bottom:355.230000px;}
.y66{bottom:355.995000px;}
.y142{bottom:357.495000px;}
.y8e{bottom:359.370000px;}
.y15d{bottom:363.870000px;}
.y28{bottom:369.495000px;}
.y1f{bottom:371.355000px;}
.yd3{bottom:372.105000px;}
.yb1{bottom:372.495000px;}
.y65{bottom:373.245000px;}
.y141{bottom:374.730000px;}
.yf4{bottom:376.620000px;}
.y8d{bottom:376.995000px;}
.y15c{bottom:380.745000px;}
.y27{bottom:386.745000px;}
.y1e{bottom:388.605000px;}
.yb0{bottom:389.370000px;}
.y64{bottom:390.120000px;}
.y140{bottom:391.605000px;}
.yf3{bottom:393.870000px;}
.y8c{bottom:394.245000px;}
.y15b{bottom:397.995000px;}
.y26{bottom:403.995000px;}
.y1d{bottom:405.870000px;}
.yaf{bottom:406.620000px;}
.y63{bottom:407.370000px;}
.y13f{bottom:408.870000px;}
.yf2{bottom:411.120000px;}
.y8b{bottom:411.495000px;}
.y15a{bottom:415.245000px;}
.y25{bottom:421.245000px;}
.y111{bottom:423.120000px;}
.yae{bottom:423.870000px;}
.y62{bottom:424.620000px;}
.y13e{bottom:426.120000px;}
.y8a{bottom:428.370000px;}
.y159{bottom:432.495000px;}
.y1c{bottom:438.525000px;}
.y110{bottom:440.400000px;}
.yd2{bottom:440.775000px;}
.yad{bottom:441.150000px;}
.y61{bottom:441.900000px;}
.y13d{bottom:443.400000px;}
.y89{bottom:445.650000px;}
.y172{bottom:449.400000px;}
.y158{bottom:449.775000px;}
.y10f{bottom:457.650000px;}
.yac{bottom:458.400000px;}
.yd1{bottom:458.775000px;}
.y60{bottom:459.150000px;}
.y13c{bottom:460.650000px;}
.y88{bottom:462.900000px;}
.y157{bottom:467.025000px;}
.y10e{bottom:474.900000px;}
.yab{bottom:475.650000px;}
.yd0{bottom:476.025000px;}
.y5f{bottom:476.400000px;}
.y13b{bottom:477.900000px;}
.y87{bottom:480.150000px;}
.y156{bottom:484.275000px;}
.y10d{bottom:492.150000px;}
.y1b{bottom:492.525000px;}
.y100{bottom:492.900000px;}
.ycf{bottom:493.275000px;}
.y5e{bottom:493.650000px;}
.y13a{bottom:495.150000px;}
.y86{bottom:497.400000px;}
.y155{bottom:501.525000px;}
.y10c{bottom:509.025000px;}
.yff{bottom:510.150000px;}
.yce{bottom:510.525000px;}
.y5d{bottom:510.900000px;}
.y139{bottom:512.775000px;}
.y85{bottom:514.650000px;}
.y171{bottom:518.775000px;}
.y1a{bottom:524.400000px;}
.yfe{bottom:527.025000px;}
.y17a{bottom:527.400000px;}
.ycd{bottom:527.775000px;}
.y5c{bottom:528.150000px;}
.yaa{bottom:528.525000px;}
.y138{bottom:529.650000px;}
.y84{bottom:531.900000px;}
.y154{bottom:534.150000px;}
.y19{bottom:540.900000px;}
.y10b{bottom:543.900000px;}
.yfd{bottom:544.275000px;}
.y17d{bottom:544.650000px;}
.y5b{bottom:545.025000px;}
.ya9{bottom:545.775000px;}
.y137{bottom:546.900000px;}
.y83{bottom:549.150000px;}
.y170{bottom:553.275000px;}
.y18{bottom:557.400000px;}
.y10a{bottom:561.150000px;}
.yfc{bottom:561.525000px;}
.y179{bottom:561.900000px;}
.y5a{bottom:562.275000px;}
.ya8{bottom:563.070000px;}
.y136{bottom:564.195000px;}
.yf1{bottom:566.445000px;}
.y16f{bottom:570.195000px;}
.y17{bottom:573.570000px;}
.y109{bottom:578.445000px;}
.y17c{bottom:578.820000px;}
.ycc{bottom:579.195000px;}
.y59{bottom:579.570000px;}
.ya7{bottom:579.945000px;}
.y82{bottom:581.445000px;}
.yf0{bottom:583.695000px;}
.y16e{bottom:587.445000px;}
.y16{bottom:590.070000px;}
.y108{bottom:595.695000px;}
.ycb{bottom:596.445000px;}
.y58{bottom:596.820000px;}
.ya6{bottom:597.195000px;}
.y81{bottom:598.320000px;}
.y135{bottom:598.695000px;}
.yef{bottom:600.945000px;}
.y16d{bottom:604.695000px;}
.y15{bottom:606.570000px;}
.y107{bottom:612.945000px;}
.yca{bottom:613.695000px;}
.y57{bottom:614.070000px;}
.ya5{bottom:614.445000px;}
.y134{bottom:615.945000px;}
.yee{bottom:617.820000px;}
.y14{bottom:623.070000px;}
.y106{bottom:630.195000px;}
.yc9{bottom:630.945000px;}
.y56{bottom:631.320000px;}
.ya4{bottom:631.695000px;}
.y133{bottom:633.195000px;}
.yed{bottom:635.070000px;}
.y13{bottom:639.570000px;}
.y105{bottom:647.070000px;}
.yc8{bottom:648.195000px;}
.y55{bottom:648.570000px;}
.ya3{bottom:648.945000px;}
.y132{bottom:650.445000px;}
.yec{bottom:652.320000px;}
.y12{bottom:655.695000px;}
.y16c{bottom:656.820000px;}
.y104{bottom:664.320000px;}
.yc7{bottom:665.445000px;}
.y54{bottom:665.820000px;}
.ya2{bottom:666.195000px;}
.y131{bottom:667.695000px;}
.yeb{bottom:670.320000px;}
.y11{bottom:672.195000px;}
.y16b{bottom:673.695000px;}
.y103{bottom:681.570000px;}
.y53{bottom:682.695000px;}
.y80{bottom:683.070000px;}
.ya1{bottom:683.445000px;}
.y130{bottom:684.945000px;}
.yea{bottom:687.570000px;}
.y10{bottom:688.695000px;}
.y52{bottom:699.975000px;}
.y7f{bottom:700.350000px;}
.ya0{bottom:700.725000px;}
.ye9{bottom:704.850000px;}
.yf{bottom:705.225000px;}
.y16a{bottom:708.225000px;}
.y102{bottom:713.850000px;}
.yc6{bottom:716.850000px;}
.y51{bottom:717.225000px;}
.y9f{bottom:717.600000px;}
.y12f{bottom:720.225000px;}
.ye{bottom:721.725000px;}
.y169{bottom:725.475000px;}
.y101{bottom:728.850000px;}
.yc5{bottom:734.100000px;}
.y50{bottom:734.475000px;}
.y9e{bottom:734.850000px;}
.y12e{bottom:737.475000px;}
.yd{bottom:738.225000px;}
.ye8{bottom:738.975000px;}
.y168{bottom:742.725000px;}
.yc4{bottom:751.350000px;}
.y7e{bottom:751.725000px;}
.y4f{bottom:752.100000px;}
.y153{bottom:752.475000px;}
.yc{bottom:754.350000px;}
.y12d{bottom:754.725000px;}
.ye7{bottom:756.225000px;}
.y167{bottom:759.975000px;}
.yfb{bottom:768.600000px;}
.y7d{bottom:768.975000px;}
.y4e{bottom:769.350000px;}
.y152{bottom:769.725000px;}
.yb{bottom:770.850000px;}
.y12c{bottom:771.975000px;}
.ye6{bottom:773.475000px;}
.yfa{bottom:785.850000px;}
.y7c{bottom:786.225000px;}
.y4d{bottom:786.600000px;}
.y151{bottom:786.975000px;}
.ya{bottom:787.350000px;}
.y12b{bottom:788.850000px;}
.ye5{bottom:790.725000px;}
.y166{bottom:792.600000px;}
.y17b{bottom:803.100000px;}
.y7b{bottom:803.475000px;}
.y9{bottom:803.850000px;}
.y12a{bottom:806.100000px;}
.ye4{bottom:807.975000px;}
.y8{bottom:820.395000px;}
.y7a{bottom:820.755000px;}
.y4c{bottom:821.130000px;}
.y129{bottom:823.380000px;}
.y79{bottom:838.005000px;}
.y4b{bottom:838.380000px;}
.ye3{bottom:840.255000px;}
.y128{bottom:840.630000px;}
.yc3{bottom:855.255000px;}
.y4a{bottom:855.645000px;}
.y127{bottom:857.880000px;}
.y9d{bottom:872.520000px;}
.y49{bottom:872.880000px;}
.y126{bottom:875.130000px;}
.y48{bottom:889.755000px;}
.y78{bottom:890.130000px;}
.y125{bottom:892.380000px;}
.y47{bottom:907.005000px;}
.y77{bottom:907.380000px;}
.y124{bottom:909.630000px;}
.y46{bottom:924.255000px;}
.y76{bottom:924.630000px;}
.y123{bottom:926.880000px;}
.y45{bottom:941.505000px;}
.y7{bottom:942.270000px;}
.y122{bottom:943.755000px;}
.y6{bottom:957.840000px;}
.yc2{bottom:958.425000px;}
.y44{bottom:958.800000px;}
.y121{bottom:961.050000px;}
.y5{bottom:973.410000px;}
.yc1{bottom:975.675000px;}
.y43{bottom:976.050000px;}
.y120{bottom:978.300000px;}
.y4{bottom:988.980000px;}
.ye2{bottom:992.925000px;}
.y42{bottom:993.300000px;}
.y11f{bottom:995.550000px;}
.y3{bottom:1004.550000px;}
.y41{bottom:1010.550000px;}
.y11e{bottom:1012.800000px;}
.y40{bottom:1027.425000px;}
.y75{bottom:1027.800000px;}
.y11d{bottom:1030.050000px;}
.y3f{bottom:1045.050000px;}
.y11c{bottom:1047.300000px;}
.y3e{bottom:1062.300000px;}
.y11b{bottom:1064.550000px;}
.y2{bottom:1071.300000px;}
.y74{bottom:1079.205000px;}
.y3d{bottom:1079.580000px;}
.y11a{bottom:1081.455000px;}
.y73{bottom:1096.455000px;}
.y3c{bottom:1096.830000px;}
.y1{bottom:1112.205000px;}
.y72{bottom:1113.705000px;}
.y3b{bottom:1114.080000px;}
.y71{bottom:1130.955000px;}
.y3a{bottom:1131.330000px;}
.y39{bottom:1148.205000px;}
.y36{bottom:1179.330000px;}
.y2e{bottom:1192.441860px;}
.h6{height:17.662500px;}
.h8{height:33.412500px;}
.h9{height:42.054199px;}
.h5{height:46.530000px;}
.h4{height:51.099609px;}
.h7{height:53.191406px;}
.h2{height:56.320312px;}
.h3{height:59.449219px;}
.h1{height:150.187500px;}
.h0{height:1263.000000px;}
.w2{width:13.125000px;}
.w3{width:492.975000px;}
.w1{width:598.230000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x11{left:1.500000px;}
.xf{left:3.000000px;}
.xa{left:76.537500px;}
.x15{left:81.412500px;}
.x13{left:88.537500px;}
.x2{left:91.537500px;}
.x8{left:127.537500px;}
.x1{left:153.825000px;}
.x12{left:195.825000px;}
.x10{left:200.325000px;}
.x14{left:205.200000px;}
.x16{left:228.870000px;}
.x9{left:320.025000px;}
.x7{left:378.556500px;}
.x5{left:380.943000px;}
.x4{left:386.775000px;}
.x6{left:392.152500px;}
.x3{left:396.525000px;}
.xe{left:440.070000px;}
.xd{left:442.346610px;}
.xb{left:473.445000px;}
.x17{left:477.570000px;}
.xc{left:555.747375px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls24{letter-spacing:-1.504000pt;}
.ls23{letter-spacing:-0.461333pt;}
.ls7{letter-spacing:-0.170667pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:-0.007388pt;}
.ls4{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.000227pt;}
.lsc{letter-spacing:0.004053pt;}
.ls1{letter-spacing:0.016000pt;}
.ls1a{letter-spacing:0.461333pt;}
.ls11{letter-spacing:0.581333pt;}
.ls1e{letter-spacing:0.634667pt;}
.ls15{letter-spacing:0.752000pt;}
.ls14{letter-spacing:0.869333pt;}
.ls22{letter-spacing:1.040000pt;}
.ls2{letter-spacing:1.109333pt;}
.ls10{letter-spacing:1.114667pt;}
.ls3{letter-spacing:1.162667pt;}
.ls1c{letter-spacing:1.216000pt;}
.lse{letter-spacing:1.269333pt;}
.ls0{letter-spacing:1.312000pt;}
.ls6{letter-spacing:1.322667pt;}
.ls1d{letter-spacing:1.333333pt;}
.ls5{letter-spacing:1.349333pt;}
.ls20{letter-spacing:1.861333pt;}
.ls8{letter-spacing:1.914667pt;}
.ls13{letter-spacing:2.085333pt;}
.ls19{letter-spacing:2.496000pt;}
.ls12{letter-spacing:3.130667pt;}
.ls17{letter-spacing:3.248000pt;}
.ls16{letter-spacing:4.581333pt;}
.ls18{letter-spacing:5.914667pt;}
.lsf{letter-spacing:8.581333pt;}
.ls1b{letter-spacing:9.914667pt;}
.ls21{letter-spacing:23.829333pt;}
.ls1f{letter-spacing:82.656000pt;}
.lsd{letter-spacing:85.269333pt;}
.ws1{word-spacing:-28.032000pt;}
.ws12{word-spacing:-17.216000pt;}
.ws13{word-spacing:-16.170667pt;}
.ws7{word-spacing:-16.000000pt;}
.ws17{word-spacing:-15.418667pt;}
.ws6{word-spacing:-15.248000pt;}
.ws11{word-spacing:-15.200000pt;}
.ws18{word-spacing:-15.125333pt;}
.ws14{word-spacing:-14.954667pt;}
.ws15{word-spacing:-14.837333pt;}
.ws2{word-spacing:-14.693333pt;}
.ws3{word-spacing:-14.666667pt;}
.ws16{word-spacing:-14.546667pt;}
.ws5{word-spacing:-14.085333pt;}
.ws10{word-spacing:-13.914667pt;}
.ws19{word-spacing:-13.624000pt;}
.ws0{word-spacing:-13.344000pt;}
.ws8{word-spacing:-13.336612pt;}
.ws9{word-spacing:-13.216000pt;}
.ws1a{word-spacing:-12.581333pt;}
.wsa{word-spacing:0.000000pt;}
.wse{word-spacing:0.047774pt;}
.wsf{word-spacing:0.066346pt;}
.wsc{word-spacing:0.160000pt;}
.wsd{word-spacing:0.357333pt;}
.wsb{word-spacing:1.248000pt;}
.ws4{word-spacing:4.170667pt;}
._21{margin-left:-8.968000pt;}
._1b{margin-left:-7.962667pt;}
._2d{margin-left:-6.592000pt;}
._2e{margin-left:-5.202667pt;}
._1c{margin-left:-3.930667pt;}
._16{margin-left:-2.912000pt;}
._0{margin-left:-1.280000pt;}
._1{width:1.152000pt;}
._2{width:2.853333pt;}
._3{width:4.485333pt;}
._4{width:5.402667pt;}
._5{width:7.146667pt;}
._e{width:8.432000pt;}
._d{width:10.026667pt;}
._c{width:11.280000pt;}
._b{width:12.389333pt;}
._7{width:14.554667pt;}
._6{width:16.346667pt;}
._8{width:17.728000pt;}
._14{width:19.181333pt;}
._a{width:20.272000pt;}
._9{width:21.509333pt;}
._15{width:22.522667pt;}
._22{width:23.853333pt;}
._1a{width:25.712000pt;}
._19{width:26.653333pt;}
._13{width:27.728000pt;}
._11{width:29.090667pt;}
._12{width:30.018667pt;}
._17{width:32.066667pt;}
._25{width:32.962667pt;}
._24{width:34.680000pt;}
._26{width:35.589333pt;}
._2a{width:37.082667pt;}
._1d{width:38.016000pt;}
._1e{width:39.994667pt;}
._31{width:40.885333pt;}
._23{width:41.840000pt;}
._2c{width:43.554667pt;}
._2f{width:44.605333pt;}
._2b{width:45.752000pt;}
._28{width:46.816000pt;}
._34{width:47.832000pt;}
._27{width:49.096000pt;}
._29{width:50.330667pt;}
._38{width:53.741333pt;}
._37{width:54.658667pt;}
._35{width:59.981333pt;}
._10{width:61.024000pt;}
._f{width:62.378667pt;}
._20{width:65.642667pt;}
._1f{width:67.749333pt;}
._32{width:69.282667pt;}
._18{width:71.146667pt;}
._36{width:72.608000pt;}
._33{width:82.482667pt;}
._30{width:126.997333pt;}
.fs3{font-size:45.333333pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:50.666667pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y32{bottom:2.533333pt;}
.y35{bottom:3.333333pt;}
.y38{bottom:4.000000pt;}
.y31{bottom:16.213333pt;}
.y37{bottom:17.333333pt;}
.y2f{bottom:23.495467pt;}
.y30{bottom:30.160000pt;}
.y34{bottom:44.000000pt;}
.y33{bottom:44.775467pt;}
.yf9{bottom:99.700000pt;}
.ye1{bottom:101.033333pt;}
.yc0{bottom:101.366667pt;}
.y150{bottom:102.700000pt;}
.y9c{bottom:105.033333pt;}
.yf8{bottom:115.366667pt;}
.ye0{bottom:116.366667pt;}
.ybf{bottom:116.700000pt;}
.y14f{bottom:118.033333pt;}
.y9b{bottom:120.366667pt;}
.y178{bottom:123.366667pt;}
.y70{bottom:123.700000pt;}
.ydf{bottom:131.700000pt;}
.ybe{bottom:132.033333pt;}
.y14e{bottom:133.373333pt;}
.y9a{bottom:135.706667pt;}
.y177{bottom:138.706667pt;}
.y6f{bottom:139.040000pt;}
.yf7{bottom:143.693333pt;}
.yde{bottom:147.026667pt;}
.ybd{bottom:147.360000pt;}
.y14d{bottom:148.706667pt;}
.y99{bottom:151.040000pt;}
.y6e{bottom:154.373333pt;}
.yf6{bottom:157.373333pt;}
.ydd{bottom:162.400000pt;}
.ybc{bottom:162.733333pt;}
.y14c{bottom:164.066667pt;}
.y98{bottom:166.400000pt;}
.y6d{bottom:169.733333pt;}
.yf5{bottom:171.066667pt;}
.ydc{bottom:177.733333pt;}
.ybb{bottom:178.066667pt;}
.y14b{bottom:179.400000pt;}
.y97{bottom:181.733333pt;}
.y6c{bottom:185.066667pt;}
.ydb{bottom:193.066667pt;}
.yba{bottom:193.400000pt;}
.y14a{bottom:194.733333pt;}
.y96{bottom:197.066667pt;}
.y165{bottom:200.066667pt;}
.y6b{bottom:200.400000pt;}
.y119{bottom:207.400000pt;}
.yb9{bottom:208.400000pt;}
.y149{bottom:210.400000pt;}
.y95{bottom:212.400000pt;}
.y164{bottom:215.400000pt;}
.y6a{bottom:215.733333pt;}
.y118{bottom:222.733333pt;}
.yda{bottom:223.400000pt;}
.yb8{bottom:223.733333pt;}
.y148{bottom:225.733333pt;}
.y94{bottom:227.400000pt;}
.y69{bottom:231.066667pt;}
.y163{bottom:231.400000pt;}
.y117{bottom:238.066667pt;}
.yd9{bottom:238.733333pt;}
.yb7{bottom:239.066667pt;}
.y147{bottom:241.066667pt;}
.y93{bottom:242.733333pt;}
.y176{bottom:246.400000pt;}
.y162{bottom:246.733333pt;}
.y2d{bottom:252.066667pt;}
.y116{bottom:253.400000pt;}
.y24{bottom:253.733333pt;}
.yd8{bottom:254.066667pt;}
.yb6{bottom:254.400000pt;}
.y146{bottom:256.400000pt;}
.y92{bottom:258.066667pt;}
.y68{bottom:259.733333pt;}
.y161{bottom:262.066667pt;}
.y2c{bottom:267.066667pt;}
.y115{bottom:268.733333pt;}
.y23{bottom:269.066667pt;}
.yd7{bottom:269.400000pt;}
.yb5{bottom:269.733333pt;}
.y145{bottom:271.733333pt;}
.y91{bottom:273.400000pt;}
.y175{bottom:277.106667pt;}
.y160{bottom:277.440000pt;}
.y2b{bottom:282.426667pt;}
.y114{bottom:284.106667pt;}
.y22{bottom:284.440000pt;}
.yd6{bottom:284.773333pt;}
.yb4{bottom:285.093333pt;}
.y144{bottom:287.106667pt;}
.y90{bottom:288.760000pt;}
.y174{bottom:292.440000pt;}
.y15f{bottom:292.773333pt;}
.y2a{bottom:297.760000pt;}
.y113{bottom:299.440000pt;}
.y21{bottom:299.773333pt;}
.yd5{bottom:300.093333pt;}
.yb3{bottom:300.426667pt;}
.y67{bottom:301.106667pt;}
.y143{bottom:302.440000pt;}
.y8f{bottom:304.106667pt;}
.y173{bottom:307.440000pt;}
.y15e{bottom:308.106667pt;}
.y29{bottom:313.106667pt;}
.y112{bottom:314.773333pt;}
.y20{bottom:315.093333pt;}
.yd4{bottom:315.426667pt;}
.yb2{bottom:315.760000pt;}
.y66{bottom:316.440000pt;}
.y142{bottom:317.773333pt;}
.y8e{bottom:319.440000pt;}
.y15d{bottom:323.440000pt;}
.y28{bottom:328.440000pt;}
.y1f{bottom:330.093333pt;}
.yd3{bottom:330.760000pt;}
.yb1{bottom:331.106667pt;}
.y65{bottom:331.773333pt;}
.y141{bottom:333.093333pt;}
.yf4{bottom:334.773333pt;}
.y8d{bottom:335.106667pt;}
.y15c{bottom:338.440000pt;}
.y27{bottom:343.773333pt;}
.y1e{bottom:345.426667pt;}
.yb0{bottom:346.106667pt;}
.y64{bottom:346.773333pt;}
.y140{bottom:348.093333pt;}
.yf3{bottom:350.106667pt;}
.y8c{bottom:350.440000pt;}
.y15b{bottom:353.773333pt;}
.y26{bottom:359.106667pt;}
.y1d{bottom:360.773333pt;}
.yaf{bottom:361.440000pt;}
.y63{bottom:362.106667pt;}
.y13f{bottom:363.440000pt;}
.yf2{bottom:365.440000pt;}
.y8b{bottom:365.773333pt;}
.y15a{bottom:369.106667pt;}
.y25{bottom:374.440000pt;}
.y111{bottom:376.106667pt;}
.yae{bottom:376.773333pt;}
.y62{bottom:377.440000pt;}
.y13e{bottom:378.773333pt;}
.y8a{bottom:380.773333pt;}
.y159{bottom:384.440000pt;}
.y1c{bottom:389.800000pt;}
.y110{bottom:391.466667pt;}
.yd2{bottom:391.800000pt;}
.yad{bottom:392.133333pt;}
.y61{bottom:392.800000pt;}
.y13d{bottom:394.133333pt;}
.y89{bottom:396.133333pt;}
.y172{bottom:399.466667pt;}
.y158{bottom:399.800000pt;}
.y10f{bottom:406.800000pt;}
.yac{bottom:407.466667pt;}
.yd1{bottom:407.800000pt;}
.y60{bottom:408.133333pt;}
.y13c{bottom:409.466667pt;}
.y88{bottom:411.466667pt;}
.y157{bottom:415.133333pt;}
.y10e{bottom:422.133333pt;}
.yab{bottom:422.800000pt;}
.yd0{bottom:423.133333pt;}
.y5f{bottom:423.466667pt;}
.y13b{bottom:424.800000pt;}
.y87{bottom:426.800000pt;}
.y156{bottom:430.466667pt;}
.y10d{bottom:437.466667pt;}
.y1b{bottom:437.800000pt;}
.y100{bottom:438.133333pt;}
.ycf{bottom:438.466667pt;}
.y5e{bottom:438.800000pt;}
.y13a{bottom:440.133333pt;}
.y86{bottom:442.133333pt;}
.y155{bottom:445.800000pt;}
.y10c{bottom:452.466667pt;}
.yff{bottom:453.466667pt;}
.yce{bottom:453.800000pt;}
.y5d{bottom:454.133333pt;}
.y139{bottom:455.800000pt;}
.y85{bottom:457.466667pt;}
.y171{bottom:461.133333pt;}
.y1a{bottom:466.133333pt;}
.yfe{bottom:468.466667pt;}
.y17a{bottom:468.800000pt;}
.ycd{bottom:469.133333pt;}
.y5c{bottom:469.466667pt;}
.yaa{bottom:469.800000pt;}
.y138{bottom:470.800000pt;}
.y84{bottom:472.800000pt;}
.y154{bottom:474.800000pt;}
.y19{bottom:480.800000pt;}
.y10b{bottom:483.466667pt;}
.yfd{bottom:483.800000pt;}
.y17d{bottom:484.133333pt;}
.y5b{bottom:484.466667pt;}
.ya9{bottom:485.133333pt;}
.y137{bottom:486.133333pt;}
.y83{bottom:488.133333pt;}
.y170{bottom:491.800000pt;}
.y18{bottom:495.466667pt;}
.y10a{bottom:498.800000pt;}
.yfc{bottom:499.133333pt;}
.y179{bottom:499.466667pt;}
.y5a{bottom:499.800000pt;}
.ya8{bottom:500.506667pt;}
.y136{bottom:501.506667pt;}
.yf1{bottom:503.506667pt;}
.y16f{bottom:506.840000pt;}
.y17{bottom:509.840000pt;}
.y109{bottom:514.173333pt;}
.y17c{bottom:514.506667pt;}
.ycc{bottom:514.840000pt;}
.y59{bottom:515.173333pt;}
.ya7{bottom:515.506667pt;}
.y82{bottom:516.840000pt;}
.yf0{bottom:518.840000pt;}
.y16e{bottom:522.173333pt;}
.y16{bottom:524.506667pt;}
.y108{bottom:529.506667pt;}
.ycb{bottom:530.173333pt;}
.y58{bottom:530.506667pt;}
.ya6{bottom:530.840000pt;}
.y81{bottom:531.840000pt;}
.y135{bottom:532.173333pt;}
.yef{bottom:534.173333pt;}
.y16d{bottom:537.506667pt;}
.y15{bottom:539.173333pt;}
.y107{bottom:544.840000pt;}
.yca{bottom:545.506667pt;}
.y57{bottom:545.840000pt;}
.ya5{bottom:546.173333pt;}
.y134{bottom:547.506667pt;}
.yee{bottom:549.173333pt;}
.y14{bottom:553.840000pt;}
.y106{bottom:560.173333pt;}
.yc9{bottom:560.840000pt;}
.y56{bottom:561.173333pt;}
.ya4{bottom:561.506667pt;}
.y133{bottom:562.840000pt;}
.yed{bottom:564.506667pt;}
.y13{bottom:568.506667pt;}
.y105{bottom:575.173333pt;}
.yc8{bottom:576.173333pt;}
.y55{bottom:576.506667pt;}
.ya3{bottom:576.840000pt;}
.y132{bottom:578.173333pt;}
.yec{bottom:579.840000pt;}
.y12{bottom:582.840000pt;}
.y16c{bottom:583.840000pt;}
.y104{bottom:590.506667pt;}
.yc7{bottom:591.506667pt;}
.y54{bottom:591.840000pt;}
.ya2{bottom:592.173333pt;}
.y131{bottom:593.506667pt;}
.yeb{bottom:595.840000pt;}
.y11{bottom:597.506667pt;}
.y16b{bottom:598.840000pt;}
.y103{bottom:605.840000pt;}
.y53{bottom:606.840000pt;}
.y80{bottom:607.173333pt;}
.ya1{bottom:607.506667pt;}
.y130{bottom:608.840000pt;}
.yea{bottom:611.173333pt;}
.y10{bottom:612.173333pt;}
.y52{bottom:622.200000pt;}
.y7f{bottom:622.533333pt;}
.ya0{bottom:622.866667pt;}
.ye9{bottom:626.533333pt;}
.yf{bottom:626.866667pt;}
.y16a{bottom:629.533333pt;}
.y102{bottom:634.533333pt;}
.yc6{bottom:637.200000pt;}
.y51{bottom:637.533333pt;}
.y9f{bottom:637.866667pt;}
.y12f{bottom:640.200000pt;}
.ye{bottom:641.533333pt;}
.y169{bottom:644.866667pt;}
.y101{bottom:647.866667pt;}
.yc5{bottom:652.533333pt;}
.y50{bottom:652.866667pt;}
.y9e{bottom:653.200000pt;}
.y12e{bottom:655.533333pt;}
.yd{bottom:656.200000pt;}
.ye8{bottom:656.866667pt;}
.y168{bottom:660.200000pt;}
.yc4{bottom:667.866667pt;}
.y7e{bottom:668.200000pt;}
.y4f{bottom:668.533333pt;}
.y153{bottom:668.866667pt;}
.yc{bottom:670.533333pt;}
.y12d{bottom:670.866667pt;}
.ye7{bottom:672.200000pt;}
.y167{bottom:675.533333pt;}
.yfb{bottom:683.200000pt;}
.y7d{bottom:683.533333pt;}
.y4e{bottom:683.866667pt;}
.y152{bottom:684.200000pt;}
.yb{bottom:685.200000pt;}
.y12c{bottom:686.200000pt;}
.ye6{bottom:687.533333pt;}
.yfa{bottom:698.533333pt;}
.y7c{bottom:698.866667pt;}
.y4d{bottom:699.200000pt;}
.y151{bottom:699.533333pt;}
.ya{bottom:699.866667pt;}
.y12b{bottom:701.200000pt;}
.ye5{bottom:702.866667pt;}
.y166{bottom:704.533333pt;}
.y17b{bottom:713.866667pt;}
.y7b{bottom:714.200000pt;}
.y9{bottom:714.533333pt;}
.y12a{bottom:716.533333pt;}
.ye4{bottom:718.200000pt;}
.y8{bottom:729.240000pt;}
.y7a{bottom:729.560000pt;}
.y4c{bottom:729.893333pt;}
.y129{bottom:731.893333pt;}
.y79{bottom:744.893333pt;}
.y4b{bottom:745.226667pt;}
.ye3{bottom:746.893333pt;}
.y128{bottom:747.226667pt;}
.yc3{bottom:760.226667pt;}
.y4a{bottom:760.573333pt;}
.y127{bottom:762.560000pt;}
.y9d{bottom:775.573333pt;}
.y49{bottom:775.893333pt;}
.y126{bottom:777.893333pt;}
.y48{bottom:790.893333pt;}
.y78{bottom:791.226667pt;}
.y125{bottom:793.226667pt;}
.y47{bottom:806.226667pt;}
.y77{bottom:806.560000pt;}
.y124{bottom:808.560000pt;}
.y46{bottom:821.560000pt;}
.y76{bottom:821.893333pt;}
.y123{bottom:823.893333pt;}
.y45{bottom:836.893333pt;}
.y7{bottom:837.573333pt;}
.y122{bottom:838.893333pt;}
.y6{bottom:851.413333pt;}
.yc2{bottom:851.933333pt;}
.y44{bottom:852.266667pt;}
.y121{bottom:854.266667pt;}
.y5{bottom:865.253333pt;}
.yc1{bottom:867.266667pt;}
.y43{bottom:867.600000pt;}
.y120{bottom:869.600000pt;}
.y4{bottom:879.093333pt;}
.ye2{bottom:882.600000pt;}
.y42{bottom:882.933333pt;}
.y11f{bottom:884.933333pt;}
.y3{bottom:892.933333pt;}
.y41{bottom:898.266667pt;}
.y11e{bottom:900.266667pt;}
.y40{bottom:913.266667pt;}
.y75{bottom:913.600000pt;}
.y11d{bottom:915.600000pt;}
.y3f{bottom:928.933333pt;}
.y11c{bottom:930.933333pt;}
.y3e{bottom:944.266667pt;}
.y11b{bottom:946.266667pt;}
.y2{bottom:952.266667pt;}
.y74{bottom:959.293333pt;}
.y3d{bottom:959.626667pt;}
.y11a{bottom:961.293333pt;}
.y73{bottom:974.626667pt;}
.y3c{bottom:974.960000pt;}
.y1{bottom:988.626667pt;}
.y72{bottom:989.960000pt;}
.y3b{bottom:990.293333pt;}
.y71{bottom:1005.293333pt;}
.y3a{bottom:1005.626667pt;}
.y39{bottom:1020.626667pt;}
.y36{bottom:1048.293333pt;}
.y2e{bottom:1059.948320pt;}
.h6{height:15.700000pt;}
.h8{height:29.700000pt;}
.h9{height:37.381510pt;}
.h5{height:41.360000pt;}
.h4{height:45.421875pt;}
.h7{height:47.281250pt;}
.h2{height:50.062500pt;}
.h3{height:52.843750pt;}
.h1{height:133.500000pt;}
.h0{height:1122.666667pt;}
.w2{width:11.666667pt;}
.w3{width:438.200000pt;}
.w1{width:531.760000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x11{left:1.333333pt;}
.xf{left:2.666667pt;}
.xa{left:68.033333pt;}
.x15{left:72.366667pt;}
.x13{left:78.700000pt;}
.x2{left:81.366667pt;}
.x8{left:113.366667pt;}
.x1{left:136.733333pt;}
.x12{left:174.066667pt;}
.x10{left:178.066667pt;}
.x14{left:182.400000pt;}
.x16{left:203.440000pt;}
.x9{left:284.466667pt;}
.x7{left:336.494667pt;}
.x5{left:338.616000pt;}
.x4{left:343.800000pt;}
.x6{left:348.580000pt;}
.x3{left:352.466667pt;}
.xe{left:391.173333pt;}
.xd{left:393.196987pt;}
.xb{left:420.840000pt;}
.x17{left:424.506667pt;}
.xc{left:493.997667pt;}
}




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