
    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_dbf186b9c9d562b06a35cf15.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.675781;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_8ae56813402a891111b786f7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c7e60c4ffe67ec833f6b4ddc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_7560b727b55bcd37cb96eed4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_1fcf1c5e336918fb5ee34e50.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_7c0d9170719f1b8d945c2a53.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{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);}
.m0{transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-2.879976px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.880018px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:3.528000px;}
.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;}
}
.ws2{word-spacing:-66.240000px;}
.ws0{word-spacing:-18.000000px;}
.ws2a{word-spacing:-14.940000px;}
.ws4{word-spacing:-3.392860px;}
.wsd{word-spacing:-2.548141px;}
.wse{word-spacing:-2.169693px;}
.ws15{word-spacing:-1.229094px;}
.ws10{word-spacing:-0.724099px;}
.ws29{word-spacing:-0.163372px;}
.ws2c{word-spacing:-0.148757px;}
.ws9{word-spacing:-0.085126px;}
.ws14{word-spacing:-0.009764px;}
.ws1a{word-spacing:-0.006975px;}
.ws1d{word-spacing:-0.005580px;}
.ws3{word-spacing:-0.004185px;}
.ws18{word-spacing:-0.002790px;}
.ws1{word-spacing:0.000000px;}
.ws2b{word-spacing:0.275117px;}
.ws6{word-spacing:0.566479px;}
.ws1b{word-spacing:0.634788px;}
.ws28{word-spacing:4.079059px;}
.ws13{word-spacing:17.988841px;}
.ws12{word-spacing:17.993025px;}
.wsc{word-spacing:21.571679px;}
.ws25{word-spacing:40.310074px;}
.wsa{word-spacing:43.812790px;}
.ws8{word-spacing:43.866493px;}
.ws27{word-spacing:43.906874px;}
.ws24{word-spacing:43.982074px;}
.ws23{word-spacing:44.630074px;}
.wsb{word-spacing:45.324390px;}
.ws26{word-spacing:48.230074px;}
.ws16{word-spacing:49.641271px;}
.ws1c{word-spacing:49.645456px;}
.ws22{word-spacing:49.648246px;}
.ws1f{word-spacing:49.659405px;}
.ws1e{word-spacing:49.667775px;}
.ws20{word-spacing:49.669169px;}
.ws21{word-spacing:49.670564px;}
.ws17{word-spacing:50.350026px;}
.ws19{word-spacing:50.359790px;}
.ws7{word-spacing:73.421694px;}
.wsf{word-spacing:77.642332px;}
.ws11{word-spacing:87.783137px;}
.ws5{word-spacing:97.880191px;}
._1a{margin-left:-4.480369px;}
._19{margin-left:-3.128376px;}
._3f{margin-left:-2.088000px;}
._0{margin-left:-1.080000px;}
._1{width:1.080000px;}
._14{width:2.287018px;}
._1b{width:3.528000px;}
._27{width:4.680000px;}
._9{width:6.264000px;}
._8{width:7.272000px;}
._a{width:8.275724px;}
._16{width:9.432000px;}
._2e{width:10.440000px;}
._15{width:11.448000px;}
._2d{width:12.888000px;}
._20{width:14.764914px;}
._21{width:16.348468px;}
._18{width:17.465230px;}
._17{width:19.218452px;}
._7{width:20.664000px;}
._6{width:21.672000px;}
._32{width:22.752000px;}
._2c{width:23.904000px;}
._c{width:25.613443px;}
._11{width:27.072000px;}
._b{width:28.083528px;}
._34{width:29.221416px;}
._26{width:30.294167px;}
._2f{width:31.486470px;}
._2a{width:33.177272px;}
._25{width:34.466586px;}
._1e{width:36.319480px;}
._e{width:37.820348px;}
._5{width:38.859652px;}
._38{width:40.308512px;}
._43{width:41.434464px;}
._f{width:43.200000px;}
._10{width:44.756016px;}
._13{width:46.474251px;}
._30{width:47.657263px;}
._3d{width:49.452765px;}
._33{width:53.757245px;}
._24{width:55.678688px;}
._3e{width:58.166074px;}
._41{width:59.736125px;}
._31{width:61.906874px;}
._3b{width:65.067233px;}
._22{width:67.588264px;}
._35{width:69.859736px;}
._42{width:71.888528px;}
._40{width:77.167418px;}
._3c{width:79.905479px;}
._23{width:85.736818px;}
._12{width:91.674098px;}
._3a{width:97.308461px;}
._39{width:98.526810px;}
._36{width:99.922784px;}
._1d{width:103.392585px;}
._1c{width:104.568051px;}
._2b{width:108.248208px;}
._1f{width:109.299205px;}
._29{width:110.358869px;}
._37{width:111.874784px;}
._d{width:113.961636px;}
._28{width:145.425079px;}
._4{width:365.100215px;}
._3{width:545.172215px;}
._2{width:765.060215px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y133{bottom:2.179758px;}
.y131{bottom:2.179759px;}
.y13c{bottom:5.239774px;}
.y143{bottom:5.419761px;}
.y140{bottom:5.419780px;}
.y145{bottom:22.879764px;}
.y147{bottom:22.879787px;}
.y13d{bottom:22.879790px;}
.y137{bottom:22.879795px;}
.y135{bottom:22.879798px;}
.y139{bottom:23.059758px;}
.y13f{bottom:25.219752px;}
.y142{bottom:25.219779px;}
.y13b{bottom:25.219787px;}
.y1{bottom:88.219803px;}
.y15f{bottom:134.479797px;}
.y11a{bottom:135.559798px;}
.y189{bottom:139.519799px;}
.y66{bottom:149.239803px;}
.y10e{bottom:149.599800px;}
.y18d{bottom:152.119800px;}
.y18b{bottom:156.259805px;}
.yac{bottom:158.239803px;}
.y32{bottom:162.379796px;}
.y12e{bottom:162.739803px;}
.y188{bottom:163.279792px;}
.y15e{bottom:165.439797px;}
.y119{bottom:166.699803px;}
.y10{bottom:167.419795px;}
.y65{bottom:169.939797px;}
.y18c{bottom:175.879796px;}
.y12f{bottom:179.659802px;}
.yf2{bottom:179.839794px;}
.y18a{bottom:180.019799px;}
.y8f{bottom:180.199803px;}
.y10d{bottom:180.739803px;}
.y17f{bottom:182.899796px;}
.y178{bottom:187.039799px;}
.yc7{bottom:188.299793px;}
.yab{bottom:189.199803px;}
.y64{bottom:190.639802px;}
.y12d{bottom:193.699791px;}
.y15d{bottom:196.579788px;}
.y118{bottom:197.659789px;}
.y187{bottom:201.439797px;}
.y31{bottom:209.899796px;}
.yf1{bottom:210.799804px;}
.y63{bottom:211.339806px;}
.y10c{bottom:211.699791px;}
.yf{bottom:213.319794px;}
.y177{bottom:217.999786px;}
.yc6{bottom:219.439797px;}
.yaa{bottom:220.339806px;}
.ydf{bottom:224.659789px;}
.y12c{bottom:224.839806px;}
.y15c{bottom:227.539788px;}
.y117{bottom:228.799804px;}
.y146{bottom:231.120023px;}
.y62{bottom:232.039788px;}
.y186{bottom:232.399796px;}
.yf0{bottom:241.939797px;}
.y8e{bottom:242.299804px;}
.y10b{bottom:242.839806px;}
.y176{bottom:249.139801px;}
.yc5{bottom:250.399796px;}
.ya9{bottom:251.299804px;}
.y61{bottom:252.739792px;}
.yde{bottom:255.619789px;}
.y12b{bottom:255.799804px;}
.y30{bottom:256.699791px;}
.y15b{bottom:258.679801px;}
.ye{bottom:259.399795px;}
.y116{bottom:259.759804px;}
.y185{bottom:263.539788px;}
.y1f{bottom:265.339806px;}
.yef{bottom:272.899795px;}
.y60{bottom:273.439797px;}
.y10a{bottom:273.799804px;}
.y175{bottom:280.099800px;}
.yc4{bottom:281.539788px;}
.ya8{bottom:282.439797px;}
.ydd{bottom:286.759804px;}
.y12a{bottom:286.939797px;}
.y15a{bottom:289.639801px;}
.y115{bottom:290.899795px;}
.y184{bottom:294.499787px;}
.y2f{bottom:302.779792px;}
.yee{bottom:304.039788px;}
.y8d{bottom:304.399795px;}
.y109{bottom:304.939797px;}
.y5f{bottom:308.899795px;}
.y174{bottom:311.239792px;}
.yc3{bottom:312.499787px;}
.ya7{bottom:313.399795px;}
.ydc{bottom:317.719803px;}
.y129{bottom:317.899795px;}
.y159{bottom:320.779792px;}
.y114{bottom:321.859794px;}
.y183{bottom:325.639801px;}
.yed{bottom:334.999787px;}
.y8c{bottom:335.539788px;}
.y108{bottom:335.899795px;}
.y173{bottom:342.199791px;}
.yc2{bottom:343.639801px;}
.y5e{bottom:344.539788px;}
.y2e{bottom:348.859794px;}
.y158{bottom:351.379783px;}
.y144{bottom:351.540021px;}
.yd{bottom:351.919785px;}
.y182{bottom:356.599800px;}
.y113{bottom:356.959785px;}
.y5d{bottom:365.419785px;}
.yec{bottom:366.139801px;}
.y8b{bottom:366.499787px;}
.y107{bottom:367.039788px;}
.y172{bottom:373.339782px;}
.yc1{bottom:374.599800px;}
.ya6{bottom:375.499787px;}
.ydb{bottom:379.819794px;}
.y128{bottom:379.999787px;}
.y181{bottom:381.619789px;}
.y5c{bottom:386.119812px;}
.y2d{bottom:394.759780px;}
.y8a{bottom:397.459809px;}
.y106{bottom:397.999786px;}
.yc{bottom:400.879806px;}
.yeb{bottom:401.239792px;}
.y1e{bottom:403.579788px;}
.ya5{bottom:406.639801px;}
.y5b{bottom:406.819794px;}
.yc0{bottom:409.879806px;}
.yda{bottom:410.959809px;}
.y127{bottom:411.139801px;}
.y157{bottom:413.839782px;}
.y171{bottom:419.419785px;}
.y5a{bottom:427.519776px;}
.y89{bottom:428.599777px;}
.y105{bottom:429.139801px;}
.ya4{bottom:437.599777px;}
.y112{bottom:437.959809px;}
.y2c{bottom:440.839782px;}
.yd9{bottom:441.919785px;}
.y126{bottom:442.099777px;}
.y156{bottom:444.979797px;}
.y59{bottom:448.219803px;}
.yb{bottom:450.019776px;}
.y170{bottom:450.379806px;}
.yea{bottom:450.739792px;}
.ybf{bottom:459.199813px;}
.y88{bottom:459.559798px;}
.y104{bottom:460.099777px;}
.y180{bottom:461.719803px;}
.y111{bottom:461.899795px;}
.ya3{bottom:468.739792px;}
.y58{bottom:468.919785px;}
.y141{bottom:469.260018px;}
.yd8{bottom:473.059798px;}
.y125{bottom:473.239792px;}
.y155{bottom:475.579788px;}
.y16f{bottom:481.519776px;}
.ye9{bottom:481.699813px;}
.y2b{bottom:486.919785px;}
.y57{bottom:489.619812px;}
.ybe{bottom:490.339782px;}
.y87{bottom:490.699813px;}
.y103{bottom:491.239792px;}
.ya{bottom:498.979797px;}
.ya2{bottom:499.699768px;}
.y110{bottom:500.599777px;}
.yd7{bottom:504.019776px;}
.y124{bottom:504.199768px;}
.y56{bottom:510.319794px;}
.y16e{bottom:512.479797px;}
.ye8{bottom:512.839782px;}
.y19b{bottom:515.899795px;}
.ybd{bottom:521.299804px;}
.y86{bottom:521.659789px;}
.y102{bottom:522.199768px;}
.ya1{bottom:530.839782px;}
.y55{bottom:531.019776px;}
.y2a{bottom:532.999786px;}
.yd6{bottom:535.159789px;}
.y123{bottom:535.339782px;}
.y154{bottom:538.039810px;}
.y16d{bottom:543.439773px;}
.ye7{bottom:543.799804px;}
.y1a8{bottom:544.339782px;}
.y19a{bottom:547.039810px;}
.y54{bottom:551.719803px;}
.ybc{bottom:552.439773px;}
.y85{bottom:552.799804px;}
.y101{bottom:553.339782px;}
.y1d{bottom:557.659789px;}
.ya0{bottom:561.799804px;}
.yd5{bottom:566.119812px;}
.y122{bottom:566.299804px;}
.y153{bottom:569.179779px;}
.y53{bottom:572.419785px;}
.y16c{bottom:574.579788px;}
.ye6{bottom:574.939773px;}
.y1a7{bottom:575.299804px;}
.y199{bottom:577.999786px;}
.y29{bottom:579.079788px;}
.ybb{bottom:583.399795px;}
.y84{bottom:583.759781px;}
.y100{bottom:584.299804px;}
.y13a{bottom:588.420015px;}
.y1c{bottom:588.799804px;}
.y9f{bottom:592.939773px;}
.y52{bottom:593.119765px;}
.y152{bottom:594.019776px;}
.y11b{bottom:597.079788px;}
.yd4{bottom:597.259781px;}
.y121{bottom:597.439773px;}
.y16b{bottom:605.539810px;}
.ye5{bottom:605.899795px;}
.y198{bottom:609.139801px;}
.y51{bottom:613.819794px;}
.yba{bottom:614.539810px;}
.y83{bottom:614.899795px;}
.yff{bottom:615.439773px;}
.y1b{bottom:619.759781px;}
.y1a6{bottom:621.379806px;}
.y9e{bottom:623.899795px;}
.y28{bottom:624.979797px;}
.yd3{bottom:628.219803px;}
.y120{bottom:628.399795px;}
.y3f{bottom:633.799804px;}
.y50{bottom:634.519776px;}
.y16a{bottom:636.679779px;}
.ye4{bottom:637.039810px;}
.y197{bottom:640.099777px;}
.y151{bottom:643.339782px;}
.y82{bottom:645.859771px;}
.yfe{bottom:646.399795px;}
.yb9{bottom:649.639801px;}
.y1a{bottom:650.899795px;}
.y1a5{bottom:652.519776px;}
.y9d{bottom:655.039810px;}
.y4f{bottom:655.219803px;}
.yd2{bottom:659.359771px;}
.y11f{bottom:659.539810px;}
.y3e{bottom:664.759781px;}
.y169{bottom:667.639801px;}
.ye3{bottom:667.999786px;}
.y27{bottom:671.059798px;}
.y196{bottom:671.239792px;}
.y150{bottom:674.299804px;}
.y4e{bottom:675.919785px;}
.y81{bottom:676.999786px;}
.yfd{bottom:677.539764px;}
.y19{bottom:681.859771px;}
.y9c{bottom:685.999786px;}
.yd1{bottom:690.319794px;}
.y11e{bottom:690.499786px;}
.y195{bottom:694.639801px;}
.y4d{bottom:696.619765px;}
.y1a4{bottom:698.419785px;}
.y168{bottom:698.779770px;}
.yb8{bottom:699.139801px;}
.y14f{bottom:705.439773px;}
.y132{bottom:705.600012px;}
.y130{bottom:706.680012px;}
.y80{bottom:707.959809px;}
.yfc{bottom:708.499786px;}
.y3d{bottom:710.839782px;}
.y18{bottom:712.999786px;}
.y26{bottom:717.139801px;}
.y4c{bottom:717.319794px;}
.y10f{bottom:721.279770px;}
.yd0{bottom:721.459809px;}
.y1a3{bottom:729.559798px;}
.y167{bottom:729.739792px;}
.yb7{bottom:730.099777px;}
.y14e{bottom:736.399795px;}
.y13e{bottom:737.820012px;}
.y4b{bottom:738.019776px;}
.y7f{bottom:739.099777px;}
.yfb{bottom:739.639801px;}
.y3c{bottom:741.979797px;}
.y17{bottom:743.959762px;}
.y9b{bottom:748.099777px;}
.ycf{bottom:752.419785px;}
.y11d{bottom:752.599777px;}
.y194{bottom:757.099777px;}
.y4a{bottom:758.719803px;}
.y138{bottom:760.140011px;}
.y166{bottom:760.879806px;}
.yb6{bottom:761.239792px;}
.y25{bottom:763.219803px;}
.ye2{bottom:765.199768px;}
.y14d{bottom:767.539764px;}
.y7e{bottom:770.059753px;}
.yfa{bottom:770.599822px;}
.y16{bottom:775.099822px;}
.y1a2{bottom:775.639801px;}
.y9a{bottom:779.239746px;}
.y49{bottom:779.419830px;}
.yce{bottom:783.559753px;}
.y11c{bottom:783.739746px;}
.y74{bottom:786.439820px;}
.y3b{bottom:787.879761px;}
.y193{bottom:788.059753px;}
.yb5{bottom:792.199769px;}
.y14c{bottom:798.499786px;}
.y7d{bottom:801.199769px;}
.yf9{bottom:801.739746px;}
.y15{bottom:806.059753px;}
.y165{bottom:806.959809px;}
.y9{bottom:807.139801px;}
.y73{bottom:807.319794px;}
.y24{bottom:809.299804px;}
.y99{bottom:810.199769px;}
.y48{bottom:814.519776px;}
.ye1{bottom:814.699769px;}
.y3a{bottom:819.019776px;}
.y192{bottom:819.199769px;}
.y42{bottom:819.739746px;}
.yb4{bottom:827.299804px;}
.y14b{bottom:829.639801px;}
.y17e{bottom:830.359772px;}
.y7c{bottom:832.159790px;}
.yf8{bottom:832.699769px;}
.y14{bottom:837.199769px;}
.y1a1{bottom:837.739746px;}
.y98{bottom:841.339782px;}
.y72{bottom:842.779815px;}
.ycd{bottom:845.659790px;}
.ye0{bottom:845.839782px;}
.y191{bottom:850.159790px;}
.y8{bottom:852.859772px;}
.y164{bottom:853.039764px;}
.y23{bottom:855.379761px;}
.y14a{bottom:860.599822px;}
.y7b{bottom:863.299804px;}
.yf7{bottom:863.839782px;}
.y39{bottom:865.099822px;}
.y41{bottom:865.819794px;}
.y13{bottom:868.159790px;}
.y1a0{bottom:868.699769px;}
.y97{bottom:872.299804px;}
.y136{bottom:876.420009px;}
.ycc{bottom:876.619812px;}
.yb3{bottom:876.799804px;}
.y71{bottom:878.599822px;}
.y17d{bottom:879.859772px;}
.y190{bottom:881.299804px;}
.y163{bottom:883.999786px;}
.y47{bottom:886.339782px;}
.y149{bottom:891.739746px;}
.y7a{bottom:894.259827px;}
.yf6{bottom:894.799804px;}
.y7{bottom:899.299804px;}
.y70{bottom:899.479797px;}
.y19f{bottom:899.839782px;}
.y22{bottom:901.279815px;}
.y96{bottom:903.439820px;}
.ycb{bottom:907.759827px;}
.yb2{bottom:907.939820px;}
.y17c{bottom:910.819794px;}
.y38{bottom:911.179779px;}
.y40{bottom:911.899750px;}
.y18f{bottom:912.259827px;}
.y162{bottom:914.959809px;}
.y6f{bottom:920.179779px;}
.y46{bottom:921.979797px;}
.y148{bottom:922.699769px;}
.y79{bottom:925.399750px;}
.yf5{bottom:925.939820px;}
.y6{bottom:930.259827px;}
.y95{bottom:934.399750px;}
.yca{bottom:938.719757px;}
.yb1{bottom:938.899750px;}
.y6e{bottom:940.879761px;}
.y17b{bottom:941.959809px;}
.y18e{bottom:943.399750px;}
.y19e{bottom:945.919738px;}
.y161{bottom:946.099822px;}
.y21{bottom:947.359772px;}
.y78{bottom:956.359772px;}
.yf4{bottom:956.899750px;}
.y37{bottom:957.979797px;}
.y5{bottom:961.399750px;}
.y6d{bottom:961.579743px;}
.y94{bottom:969.679779px;}
.yb0{bottom:970.039764px;}
.y17a{bottom:972.919738px;}
.yc9{bottom:973.819794px;}
.y160{bottom:973.999786px;}
.y19d{bottom:976.879761px;}
.y45{bottom:978.319794px;}
.y6c{bottom:982.279815px;}
.y134{bottom:984.420006px;}
.yf3{bottom:988.039764px;}
.y77{bottom:991.639801px;}
.y4{bottom:991.999786px;}
.y12{bottom:992.359772px;}
.y20{bottom:993.439820px;}
.yaf{bottom:1000.999786px;}
.y6b{bottom:1002.979797px;}
.y36{bottom:1003.879761px;}
.y179{bottom:1004.059753px;}
.y19c{bottom:1008.019776px;}
.y44{bottom:1013.779815px;}
.y93{bottom:1018.999786px;}
.y11{bottom:1023.499786px;}
.y6a{bottom:1023.679779px;}
.yae{bottom:1032.139801px;}
.y34{bottom:1039.519776px;}
.y76{bottom:1040.599822px;}
.yc8{bottom:1043.299804px;}
.y69{bottom:1044.379761px;}
.y43{bottom:1049.419738px;}
.y92{bottom:1050.139801px;}
.y3{bottom:1054.099822px;}
.y68{bottom:1065.079743px;}
.yad{bottom:1067.239746px;}
.y75{bottom:1071.739746px;}
.y91{bottom:1081.099822px;}
.y35{bottom:1085.059753px;}
.y2{bottom:1085.239746px;}
.y33{bottom:1085.599822px;}
.y67{bottom:1085.779815px;}
.y90{bottom:1102.159790px;}
.h8{height:15.840000px;}
.hb{height:38.699998px;}
.ha{height:38.879999px;}
.h3{height:44.149219px;}
.h9{height:58.651172px;}
.h7{height:70.628906px;}
.h5{height:70.664063px;}
.h4{height:72.562500px;}
.h6{height:73.544081px;}
.h2{height:1262.700000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:82.439999px;}
.w5{width:100.259999px;}
.w4{width:112.679997px;}
.w7{width:150.119997px;}
.w6{width:192.419996px;}
.w2{width:892.800000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x32{left:10.960287px;}
.x3a{left:12.400263px;}
.x3f{left:14.200260px;}
.x30{left:15.280249px;}
.x34{left:19.780256px;}
.x3c{left:20.860276px;}
.x39{left:24.640254px;}
.x40{left:27.700260px;}
.x38{left:30.220255px;}
.x36{left:32.560284px;}
.x12{left:170.080254px;}
.x3b{left:182.699995px;}
.x6{left:186.460263px;}
.x29{left:188.800258px;}
.x2{left:209.140266px;}
.x1c{left:210.940261px;}
.x23{left:212.560265px;}
.x11{left:223.360260px;}
.xb{left:228.940261px;}
.x47{left:231.820260px;}
.x1b{left:238.840248px;}
.x27{left:244.600266px;}
.x25{left:255.040252px;}
.x22{left:265.840248px;}
.x1d{left:267.280259px;}
.x2d{left:276.460251px;}
.x44{left:288.700257px;}
.x43{left:293.380249px;}
.x1a{left:328.660256px;}
.x2c{left:332.080254px;}
.xc{left:335.680245px;}
.x3d{left:347.579992px;}
.x3e{left:349.019992px;}
.x48{left:351.700257px;}
.x10{left:360.880249px;}
.x2a{left:368.980263px;}
.x4{left:373.120256px;}
.x1e{left:375.640243px;}
.x17{left:378.520264px;}
.x31{left:380.339991px;}
.x49{left:385.000252px;}
.x15{left:386.980263px;}
.x28{left:392.920249px;}
.x21{left:397.600243px;}
.x3{left:402.460273px;}
.x2e{left:405.880272px;}
.x46{left:407.860237px;}
.x7{left:409.120231px;}
.xa{left:413.620231px;}
.x9{left:415.600243px;}
.x19{left:417.220269px;}
.x5{left:419.200234px;}
.x8{left:423.160255px;}
.x1f{left:424.240257px;}
.x45{left:433.960273px;}
.x42{left:436.840248px;}
.x26{left:439.900261px;}
.x20{left:443.320260px;}
.xd{left:449.620231px;}
.x41{left:452.500252px;}
.x18{left:456.820260px;}
.x16{left:458.800270px;}
.xf{left:461.500252px;}
.xe{left:463.480263px;}
.x1{left:465.640266px;}
.x35{left:502.559989px;}
.x33{left:503.999988px;}
.x13{left:571.300271px;}
.x2f{left:607.679987px;}
.x14{left:634.300271px;}
.x37{left:640.979985px;}
.x2b{left:651.940239px;}
.x24{left:660.400262px;}
@media print{
.v1{vertical-align:-2.559979pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.560016pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:3.136000pt;}
.ws2{word-spacing:-58.880000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2a{word-spacing:-13.280000pt;}
.ws4{word-spacing:-3.015875pt;}
.wsd{word-spacing:-2.265015pt;}
.wse{word-spacing:-1.928616pt;}
.ws15{word-spacing:-1.092528pt;}
.ws10{word-spacing:-0.643644pt;}
.ws29{word-spacing:-0.145219pt;}
.ws2c{word-spacing:-0.132228pt;}
.ws9{word-spacing:-0.075668pt;}
.ws14{word-spacing:-0.008679pt;}
.ws1a{word-spacing:-0.006200pt;}
.ws1d{word-spacing:-0.004960pt;}
.ws3{word-spacing:-0.003720pt;}
.ws18{word-spacing:-0.002480pt;}
.ws1{word-spacing:0.000000pt;}
.ws2b{word-spacing:0.244548pt;}
.ws6{word-spacing:0.503536pt;}
.ws1b{word-spacing:0.564256pt;}
.ws28{word-spacing:3.625830pt;}
.ws13{word-spacing:15.990081pt;}
.ws12{word-spacing:15.993800pt;}
.wsc{word-spacing:19.174825pt;}
.ws25{word-spacing:35.831177pt;}
.wsa{word-spacing:38.944702pt;}
.ws8{word-spacing:38.992438pt;}
.ws27{word-spacing:39.028332pt;}
.ws24{word-spacing:39.095177pt;}
.ws23{word-spacing:39.671177pt;}
.wsb{word-spacing:40.288346pt;}
.ws26{word-spacing:42.871177pt;}
.ws16{word-spacing:44.125574pt;}
.ws1c{word-spacing:44.129294pt;}
.ws22{word-spacing:44.131774pt;}
.ws1f{word-spacing:44.141693pt;}
.ws1e{word-spacing:44.149133pt;}
.ws20{word-spacing:44.150373pt;}
.ws21{word-spacing:44.151613pt;}
.ws17{word-spacing:44.755579pt;}
.ws19{word-spacing:44.764258pt;}
.ws7{word-spacing:65.263728pt;}
.wsf{word-spacing:69.015407pt;}
.ws11{word-spacing:78.029455pt;}
.ws5{word-spacing:87.004614pt;}
._1a{margin-left:-3.982550pt;}
._19{margin-left:-2.780779pt;}
._3f{margin-left:-1.856000pt;}
._0{margin-left:-0.960000pt;}
._1{width:0.960000pt;}
._14{width:2.032905pt;}
._1b{width:3.136000pt;}
._27{width:4.160000pt;}
._9{width:5.568000pt;}
._8{width:6.464000pt;}
._a{width:7.356199pt;}
._16{width:8.384000pt;}
._2e{width:9.280000pt;}
._15{width:10.176000pt;}
._2d{width:11.456000pt;}
._20{width:13.124368pt;}
._21{width:14.531971pt;}
._18{width:15.524649pt;}
._17{width:17.083069pt;}
._7{width:18.368000pt;}
._6{width:19.264000pt;}
._32{width:20.224000pt;}
._2c{width:21.248000pt;}
._c{width:22.767505pt;}
._11{width:24.064000pt;}
._b{width:24.963136pt;}
._34{width:25.974592pt;}
._26{width:26.928149pt;}
._2f{width:27.987974pt;}
._2a{width:29.490908pt;}
._25{width:30.636965pt;}
._1e{width:32.283982pt;}
._e{width:33.618087pt;}
._5{width:34.541913pt;}
._38{width:35.829788pt;}
._43{width:36.830635pt;}
._f{width:38.400000pt;}
._10{width:39.783125pt;}
._13{width:41.310446pt;}
._30{width:42.362012pt;}
._3d{width:43.958013pt;}
._33{width:47.784217pt;}
._24{width:49.492167pt;}
._3e{width:51.703177pt;}
._41{width:53.098778pt;}
._31{width:55.028332pt;}
._3b{width:57.837541pt;}
._22{width:60.078457pt;}
._35{width:62.097543pt;}
._42{width:63.900914pt;}
._40{width:68.593261pt;}
._3c{width:71.027092pt;}
._23{width:76.210505pt;}
._12{width:81.488087pt;}
._3a{width:86.496410pt;}
._39{width:87.579387pt;}
._36{width:88.820252pt;}
._1d{width:91.904520pt;}
._1c{width:92.949378pt;}
._2b{width:96.220629pt;}
._1f{width:97.154849pt;}
._29{width:98.096772pt;}
._37{width:99.444252pt;}
._d{width:101.299232pt;}
._28{width:129.266737pt;}
._4{width:324.533524pt;}
._3{width:484.597524pt;}
._2{width:680.053524pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y133{bottom:1.937563pt;}
.y131{bottom:1.937564pt;}
.y13c{bottom:4.657577pt;}
.y143{bottom:4.817565pt;}
.y140{bottom:4.817583pt;}
.y145{bottom:20.337568pt;}
.y147{bottom:20.337588pt;}
.y13d{bottom:20.337591pt;}
.y137{bottom:20.337596pt;}
.y135{bottom:20.337599pt;}
.y139{bottom:20.497563pt;}
.y13f{bottom:22.417557pt;}
.y142{bottom:22.417581pt;}
.y13b{bottom:22.417588pt;}
.y1{bottom:78.417603pt;}
.y15f{bottom:119.537597pt;}
.y11a{bottom:120.497599pt;}
.y189{bottom:124.017599pt;}
.y66{bottom:132.657603pt;}
.y10e{bottom:132.977600pt;}
.y18d{bottom:135.217600pt;}
.y18b{bottom:138.897604pt;}
.yac{bottom:140.657603pt;}
.y32{bottom:144.337596pt;}
.y12e{bottom:144.657603pt;}
.y188{bottom:145.137593pt;}
.y15e{bottom:147.057597pt;}
.y119{bottom:148.177603pt;}
.y10{bottom:148.817596pt;}
.y65{bottom:151.057597pt;}
.y18c{bottom:156.337596pt;}
.y12f{bottom:159.697601pt;}
.yf2{bottom:159.857595pt;}
.y18a{bottom:160.017599pt;}
.y8f{bottom:160.177603pt;}
.y10d{bottom:160.657603pt;}
.y17f{bottom:162.577596pt;}
.y178{bottom:166.257599pt;}
.yc7{bottom:167.377593pt;}
.yab{bottom:168.177603pt;}
.y64{bottom:169.457601pt;}
.y12d{bottom:172.177592pt;}
.y15d{bottom:174.737589pt;}
.y118{bottom:175.697591pt;}
.y187{bottom:179.057597pt;}
.y31{bottom:186.577596pt;}
.yf1{bottom:187.377604pt;}
.y63{bottom:187.857605pt;}
.y10c{bottom:188.177592pt;}
.yf{bottom:189.617595pt;}
.y177{bottom:193.777588pt;}
.yc6{bottom:195.057597pt;}
.yaa{bottom:195.857605pt;}
.ydf{bottom:199.697591pt;}
.y12c{bottom:199.857605pt;}
.y15c{bottom:202.257589pt;}
.y117{bottom:203.377604pt;}
.y146{bottom:205.440020pt;}
.y62{bottom:206.257589pt;}
.y186{bottom:206.577596pt;}
.yf0{bottom:215.057597pt;}
.y8e{bottom:215.377604pt;}
.y10b{bottom:215.857605pt;}
.y176{bottom:221.457601pt;}
.yc5{bottom:222.577596pt;}
.ya9{bottom:223.377604pt;}
.y61{bottom:224.657593pt;}
.yde{bottom:227.217591pt;}
.y12b{bottom:227.377604pt;}
.y30{bottom:228.177592pt;}
.y15b{bottom:229.937601pt;}
.ye{bottom:230.577596pt;}
.y116{bottom:230.897604pt;}
.y185{bottom:234.257589pt;}
.y1f{bottom:235.857605pt;}
.yef{bottom:242.577596pt;}
.y60{bottom:243.057597pt;}
.y10a{bottom:243.377604pt;}
.y175{bottom:248.977600pt;}
.yc4{bottom:250.257589pt;}
.ya8{bottom:251.057597pt;}
.ydd{bottom:254.897604pt;}
.y12a{bottom:255.057597pt;}
.y15a{bottom:257.457601pt;}
.y115{bottom:258.577596pt;}
.y184{bottom:261.777588pt;}
.y2f{bottom:269.137593pt;}
.yee{bottom:270.257589pt;}
.y8d{bottom:270.577596pt;}
.y109{bottom:271.057597pt;}
.y5f{bottom:274.577596pt;}
.y174{bottom:276.657593pt;}
.yc3{bottom:277.777588pt;}
.ya7{bottom:278.577596pt;}
.ydc{bottom:282.417603pt;}
.y129{bottom:282.577596pt;}
.y159{bottom:285.137593pt;}
.y114{bottom:286.097595pt;}
.y183{bottom:289.457601pt;}
.yed{bottom:297.777588pt;}
.y8c{bottom:298.257589pt;}
.y108{bottom:298.577596pt;}
.y173{bottom:304.177592pt;}
.yc2{bottom:305.457601pt;}
.y5e{bottom:306.257589pt;}
.y2e{bottom:310.097595pt;}
.y158{bottom:312.337585pt;}
.y144{bottom:312.480019pt;}
.yd{bottom:312.817587pt;}
.y182{bottom:316.977600pt;}
.y113{bottom:317.297587pt;}
.y5d{bottom:324.817587pt;}
.yec{bottom:325.457601pt;}
.y8b{bottom:325.777588pt;}
.y107{bottom:326.257589pt;}
.y172{bottom:331.857584pt;}
.yc1{bottom:332.977600pt;}
.ya6{bottom:333.777588pt;}
.ydb{bottom:337.617595pt;}
.y128{bottom:337.777588pt;}
.y181{bottom:339.217591pt;}
.y5c{bottom:343.217611pt;}
.y2d{bottom:350.897583pt;}
.y8a{bottom:353.297608pt;}
.y106{bottom:353.777588pt;}
.yc{bottom:356.337605pt;}
.yeb{bottom:356.657593pt;}
.y1e{bottom:358.737589pt;}
.ya5{bottom:361.457601pt;}
.y5b{bottom:361.617595pt;}
.yc0{bottom:364.337605pt;}
.yda{bottom:365.297608pt;}
.y127{bottom:365.457601pt;}
.y157{bottom:367.857584pt;}
.y171{bottom:372.817587pt;}
.y5a{bottom:380.017579pt;}
.y89{bottom:380.977580pt;}
.y105{bottom:381.457601pt;}
.ya4{bottom:388.977580pt;}
.y112{bottom:389.297608pt;}
.y2c{bottom:391.857584pt;}
.yd9{bottom:392.817587pt;}
.y126{bottom:392.977580pt;}
.y156{bottom:395.537597pt;}
.y59{bottom:398.417603pt;}
.yb{bottom:400.017579pt;}
.y170{bottom:400.337605pt;}
.yea{bottom:400.657593pt;}
.ybf{bottom:408.177612pt;}
.y88{bottom:408.497599pt;}
.y104{bottom:408.977580pt;}
.y180{bottom:410.417603pt;}
.y111{bottom:410.577596pt;}
.ya3{bottom:416.657593pt;}
.y58{bottom:416.817587pt;}
.y141{bottom:417.120016pt;}
.yd8{bottom:420.497599pt;}
.y125{bottom:420.657593pt;}
.y155{bottom:422.737589pt;}
.y16f{bottom:428.017579pt;}
.ye9{bottom:428.177612pt;}
.y2b{bottom:432.817587pt;}
.y57{bottom:435.217611pt;}
.ybe{bottom:435.857584pt;}
.y87{bottom:436.177612pt;}
.y103{bottom:436.657593pt;}
.ya{bottom:443.537597pt;}
.ya2{bottom:444.177572pt;}
.y110{bottom:444.977580pt;}
.yd7{bottom:448.017579pt;}
.y124{bottom:448.177572pt;}
.y56{bottom:453.617595pt;}
.y16e{bottom:455.537597pt;}
.ye8{bottom:455.857584pt;}
.y19b{bottom:458.577596pt;}
.ybd{bottom:463.377604pt;}
.y86{bottom:463.697591pt;}
.y102{bottom:464.177572pt;}
.ya1{bottom:471.857584pt;}
.y55{bottom:472.017579pt;}
.y2a{bottom:473.777588pt;}
.yd6{bottom:475.697591pt;}
.y123{bottom:475.857584pt;}
.y154{bottom:478.257609pt;}
.y16d{bottom:483.057576pt;}
.ye7{bottom:483.377604pt;}
.y1a8{bottom:483.857584pt;}
.y19a{bottom:486.257609pt;}
.y54{bottom:490.417603pt;}
.ybc{bottom:491.057576pt;}
.y85{bottom:491.377604pt;}
.y101{bottom:491.857584pt;}
.y1d{bottom:495.697591pt;}
.ya0{bottom:499.377604pt;}
.yd5{bottom:503.217611pt;}
.y122{bottom:503.377604pt;}
.y153{bottom:505.937581pt;}
.y53{bottom:508.817587pt;}
.y16c{bottom:510.737589pt;}
.ye6{bottom:511.057576pt;}
.y1a7{bottom:511.377604pt;}
.y199{bottom:513.777588pt;}
.y29{bottom:514.737589pt;}
.ybb{bottom:518.577596pt;}
.y84{bottom:518.897583pt;}
.y100{bottom:519.377604pt;}
.y13a{bottom:523.040013pt;}
.y1c{bottom:523.377604pt;}
.y9f{bottom:527.057576pt;}
.y52{bottom:527.217569pt;}
.y152{bottom:528.017579pt;}
.y11b{bottom:530.737589pt;}
.yd4{bottom:530.897583pt;}
.y121{bottom:531.057576pt;}
.y16b{bottom:538.257609pt;}
.ye5{bottom:538.577596pt;}
.y198{bottom:541.457601pt;}
.y51{bottom:545.617595pt;}
.yba{bottom:546.257609pt;}
.y83{bottom:546.577596pt;}
.yff{bottom:547.057576pt;}
.y1b{bottom:550.897583pt;}
.y1a6{bottom:552.337605pt;}
.y9e{bottom:554.577596pt;}
.y28{bottom:555.537597pt;}
.yd3{bottom:558.417603pt;}
.y120{bottom:558.577596pt;}
.y3f{bottom:563.377604pt;}
.y50{bottom:564.017579pt;}
.y16a{bottom:565.937581pt;}
.ye4{bottom:566.257609pt;}
.y197{bottom:568.977580pt;}
.y151{bottom:571.857584pt;}
.y82{bottom:574.097575pt;}
.yfe{bottom:574.577596pt;}
.yb9{bottom:577.457601pt;}
.y1a{bottom:578.577596pt;}
.y1a5{bottom:580.017579pt;}
.y9d{bottom:582.257609pt;}
.y4f{bottom:582.417603pt;}
.yd2{bottom:586.097575pt;}
.y11f{bottom:586.257609pt;}
.y3e{bottom:590.897583pt;}
.y169{bottom:593.457601pt;}
.ye3{bottom:593.777588pt;}
.y27{bottom:596.497599pt;}
.y196{bottom:596.657593pt;}
.y150{bottom:599.377604pt;}
.y4e{bottom:600.817587pt;}
.y81{bottom:601.777588pt;}
.yfd{bottom:602.257568pt;}
.y19{bottom:606.097575pt;}
.y9c{bottom:609.777588pt;}
.yd1{bottom:613.617595pt;}
.y11e{bottom:613.777588pt;}
.y195{bottom:617.457601pt;}
.y4d{bottom:619.217569pt;}
.y1a4{bottom:620.817587pt;}
.y168{bottom:621.137573pt;}
.yb8{bottom:621.457601pt;}
.y14f{bottom:627.057576pt;}
.y132{bottom:627.200011pt;}
.y130{bottom:628.160011pt;}
.y80{bottom:629.297608pt;}
.yfc{bottom:629.777588pt;}
.y3d{bottom:631.857584pt;}
.y18{bottom:633.777588pt;}
.y26{bottom:637.457601pt;}
.y4c{bottom:637.617595pt;}
.y10f{bottom:641.137573pt;}
.yd0{bottom:641.297608pt;}
.y1a3{bottom:648.497599pt;}
.y167{bottom:648.657593pt;}
.yb7{bottom:648.977580pt;}
.y14e{bottom:654.577596pt;}
.y13e{bottom:655.840011pt;}
.y4b{bottom:656.017579pt;}
.y7f{bottom:656.977580pt;}
.yfb{bottom:657.457601pt;}
.y3c{bottom:659.537597pt;}
.y17{bottom:661.297567pt;}
.y9b{bottom:664.977580pt;}
.ycf{bottom:668.817587pt;}
.y11d{bottom:668.977580pt;}
.y194{bottom:672.977580pt;}
.y4a{bottom:674.417603pt;}
.y138{bottom:675.680009pt;}
.y166{bottom:676.337605pt;}
.yb6{bottom:676.657593pt;}
.y25{bottom:678.417603pt;}
.ye2{bottom:680.177572pt;}
.y14d{bottom:682.257568pt;}
.y7e{bottom:684.497559pt;}
.yfa{bottom:684.977620pt;}
.y16{bottom:688.977620pt;}
.y1a2{bottom:689.457601pt;}
.y9a{bottom:692.657552pt;}
.y49{bottom:692.817627pt;}
.yce{bottom:696.497559pt;}
.y11c{bottom:696.657552pt;}
.y74{bottom:699.057617pt;}
.y3b{bottom:700.337565pt;}
.y193{bottom:700.497559pt;}
.yb5{bottom:704.177572pt;}
.y14c{bottom:709.777588pt;}
.y7d{bottom:712.177572pt;}
.yf9{bottom:712.657552pt;}
.y15{bottom:716.497559pt;}
.y165{bottom:717.297608pt;}
.y9{bottom:717.457601pt;}
.y73{bottom:717.617595pt;}
.y24{bottom:719.377604pt;}
.y99{bottom:720.177572pt;}
.y48{bottom:724.017579pt;}
.ye1{bottom:724.177572pt;}
.y3a{bottom:728.017579pt;}
.y192{bottom:728.177572pt;}
.y42{bottom:728.657552pt;}
.yb4{bottom:735.377604pt;}
.y14b{bottom:737.457601pt;}
.y17e{bottom:738.097575pt;}
.y7c{bottom:739.697591pt;}
.yf8{bottom:740.177572pt;}
.y14{bottom:744.177572pt;}
.y1a1{bottom:744.657552pt;}
.y98{bottom:747.857584pt;}
.y72{bottom:749.137613pt;}
.ycd{bottom:751.697591pt;}
.ye0{bottom:751.857584pt;}
.y191{bottom:755.697591pt;}
.y8{bottom:758.097575pt;}
.y164{bottom:758.257568pt;}
.y23{bottom:760.337565pt;}
.y14a{bottom:764.977620pt;}
.y7b{bottom:767.377604pt;}
.yf7{bottom:767.857584pt;}
.y39{bottom:768.977620pt;}
.y41{bottom:769.617595pt;}
.y13{bottom:771.697591pt;}
.y1a0{bottom:772.177572pt;}
.y97{bottom:775.377604pt;}
.y136{bottom:779.040008pt;}
.ycc{bottom:779.217611pt;}
.yb3{bottom:779.377604pt;}
.y71{bottom:780.977620pt;}
.y17d{bottom:782.097575pt;}
.y190{bottom:783.377604pt;}
.y163{bottom:785.777588pt;}
.y47{bottom:787.857584pt;}
.y149{bottom:792.657552pt;}
.y7a{bottom:794.897624pt;}
.yf6{bottom:795.377604pt;}
.y7{bottom:799.377604pt;}
.y70{bottom:799.537597pt;}
.y19f{bottom:799.857584pt;}
.y22{bottom:801.137613pt;}
.y96{bottom:803.057617pt;}
.ycb{bottom:806.897624pt;}
.yb2{bottom:807.057617pt;}
.y17c{bottom:809.617595pt;}
.y38{bottom:809.937581pt;}
.y40{bottom:810.577556pt;}
.y18f{bottom:810.897624pt;}
.y162{bottom:813.297608pt;}
.y6f{bottom:817.937581pt;}
.y46{bottom:819.537597pt;}
.y148{bottom:820.177572pt;}
.y79{bottom:822.577556pt;}
.yf5{bottom:823.057617pt;}
.y6{bottom:826.897624pt;}
.y95{bottom:830.577556pt;}
.yca{bottom:834.417561pt;}
.yb1{bottom:834.577556pt;}
.y6e{bottom:836.337565pt;}
.y17b{bottom:837.297608pt;}
.y18e{bottom:838.577556pt;}
.y19e{bottom:840.817545pt;}
.y161{bottom:840.977620pt;}
.y21{bottom:842.097575pt;}
.y78{bottom:850.097575pt;}
.yf4{bottom:850.577556pt;}
.y37{bottom:851.537597pt;}
.y5{bottom:854.577556pt;}
.y6d{bottom:854.737549pt;}
.y94{bottom:861.937581pt;}
.yb0{bottom:862.257568pt;}
.y17a{bottom:864.817545pt;}
.yc9{bottom:865.617595pt;}
.y160{bottom:865.777588pt;}
.y19d{bottom:868.337565pt;}
.y45{bottom:869.617595pt;}
.y6c{bottom:873.137613pt;}
.y134{bottom:875.040005pt;}
.yf3{bottom:878.257568pt;}
.y77{bottom:881.457601pt;}
.y4{bottom:881.777588pt;}
.y12{bottom:882.097575pt;}
.y20{bottom:883.057617pt;}
.yaf{bottom:889.777588pt;}
.y6b{bottom:891.537597pt;}
.y36{bottom:892.337565pt;}
.y179{bottom:892.497559pt;}
.y19c{bottom:896.017579pt;}
.y44{bottom:901.137613pt;}
.y93{bottom:905.777588pt;}
.y11{bottom:909.777588pt;}
.y6a{bottom:909.937581pt;}
.yae{bottom:917.457601pt;}
.y34{bottom:924.017579pt;}
.y76{bottom:924.977620pt;}
.yc8{bottom:927.377604pt;}
.y69{bottom:928.337565pt;}
.y43{bottom:932.817545pt;}
.y92{bottom:933.457601pt;}
.y3{bottom:936.977620pt;}
.y68{bottom:946.737549pt;}
.yad{bottom:948.657552pt;}
.y75{bottom:952.657552pt;}
.y91{bottom:960.977620pt;}
.y35{bottom:964.497559pt;}
.y2{bottom:964.657552pt;}
.y33{bottom:964.977620pt;}
.y67{bottom:965.137613pt;}
.y90{bottom:979.697591pt;}
.h8{height:14.080000pt;}
.hb{height:34.399999pt;}
.ha{height:34.559999pt;}
.h3{height:39.243750pt;}
.h9{height:52.134375pt;}
.h7{height:62.781250pt;}
.h5{height:62.812500pt;}
.h4{height:64.500000pt;}
.h6{height:65.372516pt;}
.h2{height:1122.400000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:73.279999pt;}
.w5{width:89.119999pt;}
.w4{width:100.159997pt;}
.w7{width:133.439997pt;}
.w6{width:171.039996pt;}
.w2{width:793.600000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x32{left:9.742477pt;}
.x3a{left:11.022456pt;}
.x3f{left:12.622453pt;}
.x30{left:13.582444pt;}
.x34{left:17.582449pt;}
.x3c{left:18.542468pt;}
.x39{left:21.902448pt;}
.x40{left:24.622453pt;}
.x38{left:26.862449pt;}
.x36{left:28.942475pt;}
.x12{left:151.182448pt;}
.x3b{left:162.399996pt;}
.x6{left:165.742456pt;}
.x29{left:167.822452pt;}
.x2{left:185.902459pt;}
.x1c{left:187.502455pt;}
.x23{left:188.942457pt;}
.x11{left:198.542453pt;}
.xb{left:203.502455pt;}
.x47{left:206.062453pt;}
.x1b{left:212.302443pt;}
.x27{left:217.422459pt;}
.x25{left:226.702447pt;}
.x22{left:236.302443pt;}
.x1d{left:237.582452pt;}
.x2d{left:245.742445pt;}
.x44{left:256.622451pt;}
.x43{left:260.782444pt;}
.x1a{left:292.142449pt;}
.x2c{left:295.182448pt;}
.xc{left:298.382440pt;}
.x3d{left:308.959993pt;}
.x3e{left:310.239993pt;}
.x48{left:312.622451pt;}
.x10{left:320.782444pt;}
.x2a{left:327.982456pt;}
.x4{left:331.662449pt;}
.x1e{left:333.902439pt;}
.x17{left:336.462457pt;}
.x31{left:338.079992pt;}
.x49{left:342.222447pt;}
.x15{left:343.982456pt;}
.x28{left:349.262444pt;}
.x21{left:353.422439pt;}
.x3{left:357.742465pt;}
.x2e{left:360.782464pt;}
.x46{left:362.542433pt;}
.x7{left:363.662428pt;}
.xa{left:367.662428pt;}
.x9{left:369.422439pt;}
.x19{left:370.862461pt;}
.x5{left:372.622431pt;}
.x8{left:376.142449pt;}
.x1f{left:377.102451pt;}
.x45{left:385.742465pt;}
.x42{left:388.302443pt;}
.x26{left:391.022455pt;}
.x20{left:394.062453pt;}
.xd{left:399.662428pt;}
.x41{left:402.222447pt;}
.x18{left:406.062453pt;}
.x16{left:407.822463pt;}
.xf{left:410.222447pt;}
.xe{left:411.982456pt;}
.x1{left:413.902459pt;}
.x35{left:446.719991pt;}
.x33{left:447.999989pt;}
.x13{left:507.822463pt;}
.x2f{left:540.159988pt;}
.x14{left:563.822463pt;}
.x37{left:569.759987pt;}
.x2b{left:579.502435pt;}
.x24{left:587.022455pt;}
}




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