
    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_a0eb9b40d0c12d75bc52a0e0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_a5ae4fdf2a53978812d57b2e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_d1f490c47d5c5b06529608e3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.897000;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_46a0538a551548e92ce9cafb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.904000;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_e8b38a61aa8fa8e07bf23740.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893000;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_c91381a0780027f222a6fd43.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.902832;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_36299f94416a673f29ff993d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.903320;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_e7a3caeda093896dc4679cab.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.696289;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;}
.m4{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.009938px;}
.ls8{letter-spacing:0.019787px;}
.ls9{letter-spacing:0.019800px;}
.lsa{letter-spacing:0.019831px;}
.ls7{letter-spacing:0.019875px;}
.ls1{letter-spacing:0.127080px;}
.ls4{letter-spacing:0.168120px;}
.lsd{letter-spacing:0.275460px;}
.ls3{letter-spacing:0.316500px;}
.ls6{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.378514px;}
.ls5{letter-spacing:0.378602px;}
.lsc{letter-spacing:7.934637px;}
.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;}
}
.ws3{word-spacing:-51.468459px;}
.ws4{word-spacing:-46.433501px;}
.ws7{word-spacing:-16.579869px;}
.wsd{word-spacing:-16.579825px;}
.ws8{word-spacing:-16.579781px;}
.ws2{word-spacing:-16.559993px;}
.ws0{word-spacing:-15.318508px;}
.ws6{word-spacing:-15.299994px;}
.ws5{word-spacing:-14.939994px;}
.ws9{word-spacing:-13.505755px;}
.wsc{word-spacing:-12.203995px;}
.ws1{word-spacing:0.000000px;}
.wsa{word-spacing:44.719944px;}
.wsb{word-spacing:245.455138px;}
._15{margin-left:-2.083246px;}
._1{margin-left:-1.015734px;}
._0{width:1.229400px;}
._3{width:2.250578px;}
._2{width:3.671540px;}
._8{width:5.428865px;}
._7{width:6.553263px;}
._9{width:8.247725px;}
._6{width:9.747230px;}
._e{width:10.830601px;}
._5{width:11.869059px;}
._4{width:13.313964px;}
._f{width:14.347481px;}
._18{width:15.481016px;}
._b{width:17.577419px;}
._a{width:18.583240px;}
._c{width:20.426567px;}
._d{width:21.795137px;}
._10{width:24.605026px;}
._17{width:27.968702px;}
._16{width:29.203019px;}
._13{width:75.500156px;}
._19{width:91.504562px;}
._12{width:270.026532px;}
._14{width:288.481125px;}
._11{width:847.957773px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.759983px;}
.fs3{font-size:53.999978px;}
.fs1{font-size:59.759976px;}
.fs0{font-size:66.239974px;}
.fs2{font-size:71.999971px;}
.y0{bottom:0.000000px;}
.y139{bottom:0.359057px;}
.yd2{bottom:3.238956px;}
.yce{bottom:3.238982px;}
.yc8{bottom:3.239022px;}
.yd0{bottom:3.418969px;}
.ycc{bottom:3.418995px;}
.yca{bottom:3.419009px;}
.ya2{bottom:3.598938px;}
.y10a{bottom:3.598945px;}
.y74{bottom:3.598999px;}
.yc6{bottom:3.599034px;}
.y95{bottom:3.599128px;}
.ybf{bottom:3.599156px;}
.y12d{bottom:3.599193px;}
.y146{bottom:3.599276px;}
.y65{bottom:3.958930px;}
.y67{bottom:3.958938px;}
.y69{bottom:3.958945px;}
.y6b{bottom:3.958953px;}
.y6d{bottom:3.958960px;}
.y6f{bottom:3.958968px;}
.y71{bottom:3.958976px;}
.y14f{bottom:3.958986px;}
.y152{bottom:3.959008px;}
.y155{bottom:3.959030px;}
.ya5{bottom:3.959050px;}
.ya7{bottom:3.959065px;}
.y10c{bottom:3.959071px;}
.yaa{bottom:3.959073px;}
.y10f{bottom:3.959079px;}
.yac{bottom:3.959080px;}
.y111{bottom:3.959086px;}
.yae{bottom:3.959088px;}
.y113{bottom:3.959094px;}
.yb0{bottom:3.959095px;}
.y115{bottom:3.959102px;}
.yb3{bottom:3.959103px;}
.y117{bottom:3.959109px;}
.yb5{bottom:3.959111px;}
.y119{bottom:3.959117px;}
.yb7{bottom:3.959118px;}
.y11b{bottom:3.959124px;}
.yb9{bottom:3.959126px;}
.y11d{bottom:3.959132px;}
.ybb{bottom:3.959133px;}
.y77{bottom:3.959139px;}
.y121{bottom:3.959147px;}
.y124{bottom:3.959155px;}
.y7b{bottom:3.959162px;}
.y7d{bottom:3.959170px;}
.y80{bottom:3.959177px;}
.ye4{bottom:3.959182px;}
.y82{bottom:3.959185px;}
.y84{bottom:3.959192px;}
.y86{bottom:3.959200px;}
.ye0{bottom:3.959206px;}
.y88{bottom:3.959207px;}
.ydc{bottom:3.959231px;}
.yd8{bottom:3.959256px;}
.yd5{bottom:3.959277px;}
.ye7{bottom:3.959279px;}
.y157{bottom:3.959288px;}
.yc2{bottom:3.959293px;}
.y2{bottom:227.099909px;}
.y63{bottom:245.099902px;}
.y14d{bottom:246.899901px;}
.yc3{bottom:248.879900px;}
.y14c{bottom:262.019895px;}
.y31{bottom:262.559895px;}
.y62{bottom:263.999894px;}
.yc1{bottom:264.000600px;}
.yc0{bottom:267.959893px;}
.y156{bottom:276.240600px;}
.y30{bottom:281.459887px;}
.yf0{bottom:282.899887px;}
.y61{bottom:283.079887px;}
.y13b{bottom:287.579885px;}
.ye6{bottom:297.300600px;}
.y2f{bottom:300.539880px;}
.y104{bottom:301.259879px;}
.y60{bottom:301.979879px;}
.yd4{bottom:302.520600px;}
.yf9{bottom:306.479877px;}
.y145{bottom:306.840600px;}
.y13c{bottom:309.539876px;}
.y2e{bottom:319.439872px;}
.y5f{bottom:320.879872px;}
.y13d{bottom:331.319867px;}
.y2d{bottom:338.519865px;}
.yd6{bottom:339.779864px;}
.y5e{bottom:339.959864px;}
.yfa{bottom:341.399863px;}
.y8a{bottom:348.059861px;}
.y13e{bottom:353.279859px;}
.yd7{bottom:356.520600px;}
.y2c{bottom:357.419857px;}
.y5d{bottom:358.859856px;}
.yfb{bottom:362.099855px;}
.y9f{bottom:366.959853px;}
.y147{bottom:372.359851px;}
.y13f{bottom:375.239850px;}
.y2b{bottom:376.319849px;}
.y5c{bottom:377.939849px;}
.yd9{bottom:380.999848px;}
.yfc{bottom:382.619847px;}
.y9e{bottom:386.039846px;}
.ye5{bottom:394.679842px;}
.y2a{bottom:395.399842px;}
.y5b{bottom:396.839841px;}
.y140{bottom:397.019841px;}
.yda{bottom:401.519839px;}
.yfd{bottom:403.139839px;}
.y9d{bottom:404.939838px;}
.y29{bottom:414.299834px;}
.y5a{bottom:415.739834px;}
.ydb{bottom:418.260600px;}
.y141{bottom:418.979832px;}
.yfe{bottom:423.839830px;}
.y9c{bottom:424.019830px;}
.y28{bottom:433.379827px;}
.y109{bottom:434.459826px;}
.y59{bottom:434.819826px;}
.y142{bottom:440.939824px;}
.ydd{bottom:442.739823px;}
.y9b{bottom:442.919823px;}
.yff{bottom:444.359822px;}
.y27{bottom:451.919819px;}
.y108{bottom:453.359819px;}
.y58{bottom:453.719819px;}
.y89{bottom:462.359815px;}
.y143{bottom:462.899815px;}
.yde{bottom:463.259815px;}
.y100{bottom:464.879814px;}
.y26{bottom:471.179812px;}
.y107{bottom:472.439811px;}
.y57{bottom:472.799811px;}
.y87{bottom:477.300600px;}
.ydf{bottom:480.000600px;}
.y9a{bottom:481.259807px;}
.y144{bottom:484.679806px;}
.y101{bottom:485.399806px;}
.y25{bottom:490.259804px;}
.y56{bottom:491.699803px;}
.y85{bottom:496.200600px;}
.y99{bottom:500.159800px;}
.ye1{bottom:504.479798px;}
.y102{bottom:506.099798px;}
.y24{bottom:509.159796px;}
.y55{bottom:510.599796px;}
.y12c{bottom:514.380600px;}
.y83{bottom:515.280600px;}
.y14b{bottom:517.979793px;}
.y98{bottom:519.239792px;}
.ye2{bottom:524.999790px;}
.y103{bottom:526.619789px;}
.y23{bottom:528.239789px;}
.y54{bottom:529.679788px;}
.y81{bottom:534.180600px;}
.y12b{bottom:537.419785px;}
.ye3{bottom:541.740600px;}
.y22{bottom:547.139781px;}
.y53{bottom:548.579781px;}
.y12a{bottom:552.360600px;}
.y7f{bottom:553.260600px;}
.y129{bottom:556.319777px;}
.y7e{bottom:557.219777px;}
.y21{bottom:566.039774px;}
.y52{bottom:567.659773px;}
.y128{bottom:571.260600px;}
.y7c{bottom:572.160600px;}
.y127{bottom:575.219770px;}
.y20{bottom:585.119766px;}
.y51{bottom:586.199766px;}
.y106{bottom:586.559765px;}
.yef{bottom:590.339764px;}
.y126{bottom:590.340600px;}
.y7a{bottom:591.060600px;}
.y125{bottom:594.299762px;}
.y1f{bottom:604.019758px;}
.y50{bottom:605.099758px;}
.y105{bottom:605.459758px;}
.ybe{bottom:605.640600px;}
.y123{bottom:609.240600px;}
.y122{bottom:613.199755px;}
.y79{bottom:614.099754px;}
.y1e{bottom:623.099751px;}
.y4f{bottom:624.539750px;}
.y120{bottom:628.320600px;}
.ybd{bottom:628.679749px;}
.y78{bottom:632.999747px;}
.y1d{bottom:641.999743px;}
.y4e{bottom:643.439743px;}
.y11f{bottom:647.220600px;}
.ybc{bottom:647.579741px;}
.y76{bottom:648.120600px;}
.y11e{bottom:651.179740px;}
.y75{bottom:652.079739px;}
.y1c{bottom:661.079736px;}
.y4d{bottom:662.519735px;}
.yba{bottom:662.520600px;}
.y11c{bottom:666.120600px;}
.yee{bottom:666.479733px;}
.ya0{bottom:667.019733px;}
.y159{bottom:670.079732px;}
.y94{bottom:676.380600px;}
.y1b{bottom:679.979728px;}
.y4c{bottom:681.419727px;}
.yb8{bottom:681.600600px;}
.y11a{bottom:685.200600px;}
.y8b{bottom:696.719721px;}
.y1a{bottom:698.879720px;}
.y4b{bottom:700.319720px;}
.yb6{bottom:700.500600px;}
.y118{bottom:704.100600px;}
.yed{bottom:704.459718px;}
.y19{bottom:717.959713px;}
.y4a{bottom:719.399712px;}
.yb4{bottom:719.580600px;}
.y116{bottom:723.180600px;}
.yec{bottom:723.539711px;}
.y8c{bottom:729.119708px;}
.y18{bottom:736.859705px;}
.y49{bottom:738.299705px;}
.yb2{bottom:738.480600px;}
.y114{bottom:742.080600px;}
.yb1{bottom:742.439703px;}
.y17{bottom:755.939698px;}
.y48{bottom:757.379697px;}
.yaf{bottom:757.380600px;}
.y112{bottom:760.980600px;}
.y8d{bottom:761.339695px;}
.y14a{bottom:764.939694px;}
.y16{bottom:774.839690px;}
.y47{bottom:776.279689px;}
.yad{bottom:776.460600px;}
.y110{bottom:780.060600px;}
.yeb{bottom:780.419688px;}
.y15{bottom:793.739683px;}
.y46{bottom:795.359682px;}
.yab{bottom:795.360600px;}
.y93{bottom:795.899682px;}
.y10e{bottom:798.960600px;}
.yea{bottom:799.319680px;}
.y10d{bottom:802.919679px;}
.y14{bottom:812.819675px;}
.y45{bottom:814.259674px;}
.ya9{bottom:814.440600px;}
.y10b{bottom:818.040600px;}
.ya8{bottom:818.399673px;}
.y149{bottom:821.999671px;}
.y8e{bottom:826.139670px;}
.y13{bottom:831.719667px;}
.y44{bottom:833.159667px;}
.ya6{bottom:833.340600px;}
.y158{bottom:836.939665px;}
.y12{bottom:850.799660px;}
.y43{bottom:852.239659px;}
.y138{bottom:856.020600px;}
.ye9{bottom:856.199658px;}
.y8f{bottom:858.359657px;}
.y11{bottom:869.699652px;}
.y42{bottom:871.139652px;}
.ya4{bottom:871.320600px;}
.ya3{bottom:875.279650px;}
.y10{bottom:888.599645px;}
.y41{bottom:890.219644px;}
.y90{bottom:890.759644px;}
.y12e{bottom:895.619642px;}
.yf{bottom:907.679637px;}
.y40{bottom:909.119636px;}
.yc5{bottom:912.000600px;}
.yc4{bottom:915.599634px;}
.y12f{bottom:918.659633px;}
.y154{bottom:922.080600px;}
.y91{bottom:922.979631px;}
.ye{bottom:926.579629px;}
.y3f{bottom:928.019629px;}
.y130{bottom:941.699623px;}
.yc7{bottom:942.240600px;}
.yf8{bottom:943.679623px;}
.yd{bottom:945.659622px;}
.y3e{bottom:947.099621px;}
.y153{bottom:953.219619px;}
.y15a{bottom:954.659618px;}
.y92{bottom:955.379618px;}
.yf7{bottom:960.959616px;}
.yc{bottom:964.559614px;}
.y131{bottom:964.919614px;}
.y3d{bottom:965.999614px;}
.yc9{bottom:975.000600px;}
.y151{bottom:976.440600px;}
.yd3{bottom:976.979609px;}
.yb{bottom:983.099607px;}
.y3c{bottom:985.079606px;}
.yf6{bottom:985.619606px;}
.y13a{bottom:985.799606px;}
.y132{bottom:987.959605px;}
.y73{bottom:1000.020600px;}
.ya{bottom:1002.179599px;}
.yf5{bottom:1002.899599px;}
.y72{bottom:1003.619599px;}
.y3b{bottom:1003.979598px;}
.y150{bottom:1007.399597px;}
.ycb{bottom:1007.940600px;}
.y133{bottom:1010.999596px;}
.y9{bottom:1021.079592px;}
.y97{bottom:1022.519591px;}
.y3a{bottom:1022.879591px;}
.yf4{bottom:1027.559589px;}
.y14e{bottom:1030.620600px;}
.y134{bottom:1034.219586px;}
.ycd{bottom:1040.880600px;}
.y96{bottom:1041.599583px;}
.y39{bottom:1041.959583px;}
.yf3{bottom:1044.839582px;}
.y8{bottom:1049.159580px;}
.y70{bottom:1056.900600px;}
.y135{bottom:1057.259577px;}
.y38{bottom:1060.859576px;}
.y7{bottom:1068.059573px;}
.yf2{bottom:1069.319572px;}
.ycf{bottom:1073.640600px;}
.y6e{bottom:1075.980600px;}
.y37{bottom:1079.939568px;}
.y136{bottom:1080.299568px;}
.yf1{bottom:1086.599565px;}
.y6c{bottom:1094.880600px;}
.y6{bottom:1095.959562px;}
.y36{bottom:1098.839560px;}
.y137{bottom:1103.519559px;}
.yd1{bottom:1106.580600px;}
.y6a{bottom:1113.780600px;}
.y5{bottom:1115.039554px;}
.y35{bottom:1117.739553px;}
.y68{bottom:1132.860600px;}
.y148{bottom:1136.459545px;}
.y34{bottom:1136.819545px;}
.y66{bottom:1151.760600px;}
.y4{bottom:1152.479539px;}
.ya1{bottom:1155.359538px;}
.y33{bottom:1155.719538px;}
.y64{bottom:1170.840600px;}
.y3{bottom:1172.999531px;}
.ye8{bottom:1174.439530px;}
.y32{bottom:1174.799530px;}
.y1{bottom:1194.419522px;}
.h13{height:16.200000px;}
.hc{height:16.560000px;}
.hd{height:16.740000px;}
.hb{height:16.920000px;}
.h10{height:18.000000px;}
.he{height:18.180000px;}
.h9{height:18.540000px;}
.h8{height:18.720000px;}
.h15{height:28.730869px;}
.h12{height:31.140000px;}
.h14{height:38.759750px;}
.h11{height:40.618109px;}
.h2{height:41.114864px;}
.ha{height:41.353903px;}
.hf{height:42.894123px;}
.h6{height:45.440622px;}
.h7{height:45.573102px;}
.h4{height:45.838062px;}
.h5{height:46.301741px;}
.h1{height:47.545293px;}
.h3{height:49.823980px;}
.h0{height:1263.000000px;}
.w5b{width:0.540000px;}
.w3c{width:0.720000px;}
.w6b{width:1.800000px;}
.w1d{width:2.160000px;}
.w20{width:2.340000px;}
.w59{width:2.700000px;}
.w2e{width:3.420000px;}
.w2{width:3.780000px;}
.w5c{width:4.860000px;}
.w51{width:5.220000px;}
.w28{width:5.580000px;}
.w61{width:6.480000px;}
.w2a{width:6.840000px;}
.w3e{width:9.000000px;}
.w3b{width:9.540000px;}
.w9{width:10.260000px;}
.w15{width:10.440000px;}
.w40{width:10.800000px;}
.w23{width:11.160000px;}
.w64{width:11.340000px;}
.w21{width:11.880000px;}
.w4e{width:12.420000px;}
.w1e{width:13.500000px;}
.w27{width:14.400000px;}
.w6{width:15.480000px;}
.w4b{width:15.660000px;}
.w8{width:16.020000px;}
.w2b{width:18.360000px;}
.w4d{width:18.900000px;}
.w12{width:19.620000px;}
.w11{width:19.980000px;}
.w22{width:21.240000px;}
.w5f{width:21.600000px;}
.w56{width:22.140000px;}
.w18{width:22.860000px;}
.w2d{width:24.120000px;}
.w67{width:25.740000px;}
.w6c{width:26.100000px;}
.w4f{width:27.360000px;}
.w19{width:27.900000px;}
.w41{width:29.520000px;}
.w29{width:30.240000px;}
.w13{width:30.420000px;}
.we{width:30.960000px;}
.w5d{width:34.200000px;}
.w6a{width:34.380000px;}
.w49{width:34.560000px;}
.wd{width:38.880000px;}
.w3{width:39.240000px;}
.w47{width:40.500000px;}
.w5e{width:40.860000px;}
.w39{width:42.300000px;}
.w45{width:42.480000px;}
.w69{width:45.000000px;}
.w35{width:52.740000px;}
.w48{width:55.080000px;}
.w5{width:56.160000px;}
.w63{width:56.340000px;}
.w38{width:58.860000px;}
.w1a{width:65.880000px;}
.w66{width:68.220000px;}
.wa{width:70.200000px;}
.w24{width:72.000000px;}
.w3d{width:73.080000px;}
.w1f{width:74.700000px;}
.w43{width:77.760000px;}
.w68{width:80.460000px;}
.w4a{width:82.620000px;}
.wc{width:84.240000px;}
.w65{width:84.600000px;}
.w42{width:85.860000px;}
.w1c{width:89.820000px;}
.w1b{width:90.000000px;}
.w3f{width:90.180000px;}
.w17{width:91.080000px;}
.w1{width:95.760000px;}
.w25{width:97.380000px;}
.w32{width:105.660000px;}
.w10{width:106.380000px;}
.w37{width:109.980000px;}
.w62{width:113.940000px;}
.w14{width:116.820000px;}
.w3a{width:117.000000px;}
.w31{width:132.120000px;}
.w16{width:134.280000px;}
.w34{width:134.460000px;}
.w4c{width:135.540000px;}
.w30{width:139.140000px;}
.w53{width:153.360000px;}
.w57{width:160.380000px;}
.w58{width:162.360000px;}
.w36{width:166.500000px;}
.w54{width:169.380000px;}
.w7{width:178.560000px;}
.w2f{width:179.100000px;}
.w44{width:179.640000px;}
.w46{width:201.780000px;}
.w33{width:210.060000px;}
.w26{width:225.720000px;}
.wb{width:232.740000px;}
.w4{width:237.780000px;}
.w52{width:255.600000px;}
.w55{width:262.260000px;}
.w60{width:267.840000px;}
.w2c{width:293.220000px;}
.w50{width:312.120000px;}
.w5a{width:320.040000px;}
.wf{width:322.740000px;}
.w0{width:892.500000px;}
.x31{left:-560.520058px;}
.x75{left:-548.460062px;}
.xa8{left:-524.520072px;}
.x36{left:-501.300081px;}
.xaa{left:-418.680114px;}
.x6c{left:-394.740124px;}
.xaf{left:-320.040154px;}
.x1e{left:-237.780058px;}
.x5b{left:-225.720062px;}
.x6f{left:-210.060198px;}
.x8a{left:-201.780072px;}
.x88{left:-179.640081px;}
.x25{left:-178.560081px;}
.xab{left:-169.380214px;}
.xae{left:-162.360217px;}
.x6d{left:-139.140226px;}
.x98{left:-135.540099px;}
.xb3{left:-113.940236px;}
.x71{left:-109.980238px;}
.x55{left:-97.380114px;}
.x15{left:-95.760114px;}
.x39{left:-91.080245px;}
.x2f{left:-84.240248px;}
.x94{left:-82.620120px;}
.x50{left:-72.000124px;}
.x2e{left:-70.200254px;}
.xa9{left:-58.860258px;}
.x20{left:-56.160130px;}
.x92{left:-55.080131px;}
.x70{left:-52.740261px;}
.x73{left:-42.300265px;}
.x8e{left:-40.500137px;}
.x1b{left:-39.240137px;}
.x93{left:-34.560139px;}
.x30{left:-30.960269px;}
.x3a{left:-27.900271px;}
.x6a{left:-24.120272px;}
.xad{left:-22.140273px;}
.x4a{left:-21.060144px;}
.x33{left:-19.620274px;}
.x69{left:-18.360145px;}
.x23{left:-15.480147px;}
.x5e{left:-14.040147px;}
.x38{left:-10.440278px;}
.x61{left:-6.840150px;}
.x5f{left:-5.580151px;}
.x18{left:-3.780151px;}
.x0{left:0.000000px;}
.x9b{left:1.619847px;}
.x7e{left:14.219888px;}
.x6{left:144.179942px;}
.x42{left:156.240000px;}
.x4{left:177.119929px;}
.x77{left:180.180000px;}
.x7{left:198.179859px;}
.x76{left:202.320000px;}
.x10{left:203.400000px;}
.x3c{left:221.039912px;}
.x83{left:225.539910px;}
.x7c{left:241.379903px;}
.x7b{left:246.420000px;}
.x7d{left:266.760000px;}
.x87{left:269.819892px;}
.x13{left:277.919889px;}
.x11{left:280.439888px;}
.x41{left:284.580000px;}
.xa{left:286.200000px;}
.x85{left:289.799884px;}
.x7f{left:292.500000px;}
.x84{left:297.359881px;}
.x46{left:300.240000px;}
.x40{left:309.960000px;}
.xe{left:312.479875px;}
.x12{left:315.539874px;}
.x80{left:318.060000px;}
.x48{left:324.359870px;}
.xd{left:325.800000px;}
.x79{left:326.880000px;}
.x44{left:329.939868px;}
.x86{left:333.000000px;}
.x8{left:335.339866px;}
.x3e{left:339.479864px;}
.x78{left:341.460000px;}
.xc{left:342.720000px;}
.x81{left:343.800000px;}
.x7a{left:347.400000px;}
.x9{left:357.659857px;}
.x3d{left:360.720000px;}
.x49{left:363.600000px;}
.xf{left:366.480000px;}
.x43{left:367.560000px;}
.x82{left:369.540000px;}
.x3f{left:370.800000px;}
.x47{left:375.120000px;}
.x45{left:376.380000px;}
.xb{left:378.180000px;}
.x14{left:381.960000px;}
.x4e{left:385.379846px;}
.x97{left:387.539845px;}
.x16{left:392.219843px;}
.x9c{left:395.100000px;}
.x63{left:396.539841px;}
.x62{left:399.059840px;}
.x21{left:401.939839px;}
.x64{left:403.739839px;}
.x2a{left:404.819838px;}
.x9a{left:411.120001px;}
.x24{left:412.379835px;}
.x95{left:416.159834px;}
.x1c{left:420.839832px;}
.x5{left:422.280601px;}
.x5c{left:431.639827px;}
.x59{left:440.819824px;}
.x9d{left:446.400000px;}
.x2c{left:447.839821px;}
.x2{left:456.119818px;}
.xa1{left:464.940000px;}
.x1{left:467.279813px;}
.x9e{left:472.140000px;}
.x3{left:478.619809px;}
.x68{left:487.259805px;}
.x1f{left:488.339805px;}
.x67{left:490.859804px;}
.x65{left:493.199803px;}
.x4f{left:494.279536px;}
.x66{left:495.539802px;}
.x26{left:498.779800px;}
.x53{left:514.079794px;}
.x28{left:516.239794px;}
.x9f{left:523.440000px;}
.xa2{left:530.820000px;}
.x8d{left:535.320000px;}
.x91{left:542.340000px;}
.x60{left:545.039782px;}
.x57{left:548.459781px;}
.x51{left:561.059776px;}
.xa3{left:563.760000px;}
.x52{left:565.560000px;}
.xa0{left:590.760000px;}
.x58{left:594.720000px;}
.xa4{left:596.700000px;}
.x29{left:613.620000px;}
.x19{left:614.699754px;}
.x1a{left:620.460000px;}
.xa5{left:629.640000px;}
.x17{left:634.500000px;}
.x8b{left:637.559745px;}
.x8f{left:644.219742px;}
.x8c{left:645.840000px;}
.x5d{left:649.619810px;}
.x56{left:651.960000px;}
.x5a{left:662.400000px;}
.x96{left:663.840000px;}
.x1d{left:673.740000px;}
.x4b{left:674.999730px;}
.x2b{left:676.800000px;}
.x4c{left:680.580000px;}
.x90{left:682.560000px;}
.x22{left:685.080000px;}
.x4d{left:686.699725px;}
.x99{left:692.279655px;}
.x27{left:694.260000px;}
.x89{left:699.480000px;}
.x54{left:701.280000px;}
.x2d{left:704.700000px;}
.x32{left:706.859717px;}
.xb4{left:711.179716px;}
.x6b{left:713.519715px;}
.x6e{left:715.499714px;}
.x3b{left:716.579713px;}
.x34{left:718.019713px;}
.x35{left:726.119708px;}
.xac{left:730.439708px;}
.xa6{left:732.419707px;}
.x72{left:734.219706px;}
.xb2{left:739.079704px;}
.xa7{left:746.819695px;}
.xb1{left:749.699700px;}
.x37{left:779.399688px;}
.xb0{left:785.159686px;}
.x74{left:790.559684px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.008833pt;}
.ls8{letter-spacing:0.017589pt;}
.ls9{letter-spacing:0.017600pt;}
.lsa{letter-spacing:0.017628pt;}
.ls7{letter-spacing:0.017667pt;}
.ls1{letter-spacing:0.112960pt;}
.ls4{letter-spacing:0.149440pt;}
.lsd{letter-spacing:0.244853pt;}
.ls3{letter-spacing:0.281333pt;}
.ls6{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.336457pt;}
.ls5{letter-spacing:0.336535pt;}
.lsc{letter-spacing:7.053011pt;}
.ws3{word-spacing:-45.749742pt;}
.ws4{word-spacing:-41.274223pt;}
.ws7{word-spacing:-14.737661pt;}
.wsd{word-spacing:-14.737622pt;}
.ws8{word-spacing:-14.737583pt;}
.ws2{word-spacing:-14.719994pt;}
.ws0{word-spacing:-13.616451pt;}
.ws6{word-spacing:-13.599995pt;}
.ws5{word-spacing:-13.279995pt;}
.ws9{word-spacing:-12.005115pt;}
.wsc{word-spacing:-10.847996pt;}
.ws1{word-spacing:0.000000pt;}
.wsa{word-spacing:39.751061pt;}
.wsb{word-spacing:218.182345pt;}
._15{margin-left:-1.851774pt;}
._1{margin-left:-0.902875pt;}
._0{width:1.092800pt;}
._3{width:2.000513pt;}
._2{width:3.263591pt;}
._8{width:4.825657pt;}
._7{width:5.825123pt;}
._9{width:7.331311pt;}
._6{width:8.664204pt;}
._e{width:9.627201pt;}
._5{width:10.550275pt;}
._4{width:11.834635pt;}
._f{width:12.753317pt;}
._18{width:13.760903pt;}
._b{width:15.624372pt;}
._a{width:16.518436pt;}
._c{width:18.156948pt;}
._d{width:19.373455pt;}
._10{width:21.871134pt;}
._17{width:24.861069pt;}
._16{width:25.958239pt;}
._13{width:67.111250pt;}
._19{width:81.337388pt;}
._12{width:240.023584pt;}
._14{width:256.427667pt;}
._11{width:753.740243pt;}
.fs4{font-size:37.119985pt;}
.fs3{font-size:47.999981pt;}
.fs1{font-size:53.119979pt;}
.fs0{font-size:58.879976pt;}
.fs2{font-size:63.999974pt;}
.y0{bottom:0.000000pt;}
.y139{bottom:0.319162pt;}
.yd2{bottom:2.879072pt;}
.yce{bottom:2.879095pt;}
.yc8{bottom:2.879130pt;}
.yd0{bottom:3.039084pt;}
.ycc{bottom:3.039107pt;}
.yca{bottom:3.039119pt;}
.ya2{bottom:3.199056pt;}
.y10a{bottom:3.199063pt;}
.y74{bottom:3.199110pt;}
.yc6{bottom:3.199141pt;}
.y95{bottom:3.199225pt;}
.ybf{bottom:3.199250pt;}
.y12d{bottom:3.199282pt;}
.y146{bottom:3.199356pt;}
.y65{bottom:3.519049pt;}
.y67{bottom:3.519056pt;}
.y69{bottom:3.519062pt;}
.y6b{bottom:3.519069pt;}
.y6d{bottom:3.519076pt;}
.y6f{bottom:3.519083pt;}
.y71{bottom:3.519089pt;}
.y14f{bottom:3.519099pt;}
.y152{bottom:3.519118pt;}
.y155{bottom:3.519137pt;}
.ya5{bottom:3.519155pt;}
.ya7{bottom:3.519169pt;}
.y10c{bottom:3.519174pt;}
.yaa{bottom:3.519176pt;}
.y10f{bottom:3.519181pt;}
.yac{bottom:3.519182pt;}
.y111{bottom:3.519188pt;}
.yae{bottom:3.519189pt;}
.y113{bottom:3.519195pt;}
.yb0{bottom:3.519196pt;}
.y115{bottom:3.519201pt;}
.yb3{bottom:3.519203pt;}
.y117{bottom:3.519208pt;}
.yb5{bottom:3.519209pt;}
.y119{bottom:3.519215pt;}
.yb7{bottom:3.519216pt;}
.y11b{bottom:3.519222pt;}
.yb9{bottom:3.519223pt;}
.y11d{bottom:3.519228pt;}
.ybb{bottom:3.519230pt;}
.y77{bottom:3.519235pt;}
.y121{bottom:3.519242pt;}
.y124{bottom:3.519249pt;}
.y7b{bottom:3.519255pt;}
.y7d{bottom:3.519262pt;}
.y80{bottom:3.519269pt;}
.ye4{bottom:3.519273pt;}
.y82{bottom:3.519275pt;}
.y84{bottom:3.519282pt;}
.y86{bottom:3.519289pt;}
.ye0{bottom:3.519295pt;}
.y88{bottom:3.519296pt;}
.ydc{bottom:3.519317pt;}
.yd8{bottom:3.519338pt;}
.yd5{bottom:3.519358pt;}
.ye7{bottom:3.519360pt;}
.y157{bottom:3.519367pt;}
.yc2{bottom:3.519371pt;}
.y2{bottom:201.866586pt;}
.y63{bottom:217.866580pt;}
.y14d{bottom:219.466579pt;}
.yc3{bottom:221.226578pt;}
.y14c{bottom:232.906574pt;}
.y31{bottom:233.386573pt;}
.y62{bottom:234.666573pt;}
.yc1{bottom:234.667200pt;}
.yc0{bottom:238.186571pt;}
.y156{bottom:245.547200pt;}
.y30{bottom:250.186567pt;}
.yf0{bottom:251.466566pt;}
.y61{bottom:251.626566pt;}
.y13b{bottom:255.626564pt;}
.ye6{bottom:264.267200pt;}
.y2f{bottom:267.146560pt;}
.y104{bottom:267.786560pt;}
.y60{bottom:268.426559pt;}
.yd4{bottom:268.907200pt;}
.yf9{bottom:272.426558pt;}
.y145{bottom:272.747200pt;}
.y13c{bottom:275.146557pt;}
.y2e{bottom:283.946553pt;}
.y5f{bottom:285.226553pt;}
.y13d{bottom:294.506549pt;}
.y2d{bottom:300.906546pt;}
.yd6{bottom:302.026546pt;}
.y5e{bottom:302.186546pt;}
.yfa{bottom:303.466545pt;}
.y8a{bottom:309.386543pt;}
.y13e{bottom:314.026541pt;}
.yd7{bottom:316.907200pt;}
.y2c{bottom:317.706540pt;}
.y5d{bottom:318.986539pt;}
.yfb{bottom:321.866538pt;}
.y9f{bottom:326.186536pt;}
.y147{bottom:330.986534pt;}
.y13f{bottom:333.546533pt;}
.y2b{bottom:334.506533pt;}
.y5c{bottom:335.946532pt;}
.yd9{bottom:338.666531pt;}
.yfc{bottom:340.106531pt;}
.y9e{bottom:343.146529pt;}
.ye5{bottom:350.826526pt;}
.y2a{bottom:351.466526pt;}
.y5b{bottom:352.746526pt;}
.y140{bottom:352.906526pt;}
.yda{bottom:356.906524pt;}
.yfd{bottom:358.346523pt;}
.y9d{bottom:359.946523pt;}
.y29{bottom:368.266519pt;}
.y5a{bottom:369.546519pt;}
.ydb{bottom:371.787200pt;}
.y141{bottom:372.426518pt;}
.yfe{bottom:376.746516pt;}
.y9c{bottom:376.906516pt;}
.y28{bottom:385.226513pt;}
.y109{bottom:386.186512pt;}
.y59{bottom:386.506512pt;}
.y142{bottom:391.946510pt;}
.ydd{bottom:393.546509pt;}
.y9b{bottom:393.706509pt;}
.yff{bottom:394.986509pt;}
.y27{bottom:401.706506pt;}
.y108{bottom:402.986505pt;}
.y58{bottom:403.306505pt;}
.y89{bottom:410.986502pt;}
.y143{bottom:411.466502pt;}
.yde{bottom:411.786502pt;}
.y100{bottom:413.226501pt;}
.y26{bottom:418.826499pt;}
.y107{bottom:419.946499pt;}
.y57{bottom:420.266499pt;}
.y87{bottom:424.267200pt;}
.ydf{bottom:426.667200pt;}
.y9a{bottom:427.786496pt;}
.y144{bottom:430.826494pt;}
.y101{bottom:431.466494pt;}
.y25{bottom:435.786492pt;}
.y56{bottom:437.066492pt;}
.y85{bottom:441.067200pt;}
.y99{bottom:444.586489pt;}
.ye1{bottom:448.426487pt;}
.y102{bottom:449.866487pt;}
.y24{bottom:452.586486pt;}
.y55{bottom:453.866485pt;}
.y12c{bottom:457.227200pt;}
.y83{bottom:458.027200pt;}
.y14b{bottom:460.426482pt;}
.y98{bottom:461.546482pt;}
.ye2{bottom:466.666480pt;}
.y103{bottom:468.106479pt;}
.y23{bottom:469.546479pt;}
.y54{bottom:470.826478pt;}
.y81{bottom:474.827200pt;}
.y12b{bottom:477.706476pt;}
.ye3{bottom:481.547200pt;}
.y22{bottom:486.346472pt;}
.y53{bottom:487.626472pt;}
.y12a{bottom:490.987200pt;}
.y7f{bottom:491.787200pt;}
.y129{bottom:494.506469pt;}
.y7e{bottom:495.306469pt;}
.y21{bottom:503.146465pt;}
.y52{bottom:504.586465pt;}
.y128{bottom:507.787200pt;}
.y7c{bottom:508.587200pt;}
.y127{bottom:511.306462pt;}
.y20{bottom:520.106459pt;}
.y51{bottom:521.066458pt;}
.y106{bottom:521.386458pt;}
.yef{bottom:524.746457pt;}
.y126{bottom:524.747200pt;}
.y7a{bottom:525.387200pt;}
.y125{bottom:528.266455pt;}
.y1f{bottom:536.906452pt;}
.y50{bottom:537.866452pt;}
.y105{bottom:538.186451pt;}
.ybe{bottom:538.347200pt;}
.y123{bottom:541.547200pt;}
.y122{bottom:545.066449pt;}
.y79{bottom:545.866448pt;}
.y1e{bottom:553.866445pt;}
.y4f{bottom:555.146445pt;}
.y120{bottom:558.507200pt;}
.ybd{bottom:558.826443pt;}
.y78{bottom:562.666442pt;}
.y1d{bottom:570.666438pt;}
.y4e{bottom:571.946438pt;}
.y11f{bottom:575.307200pt;}
.ybc{bottom:575.626436pt;}
.y76{bottom:576.107200pt;}
.y11e{bottom:578.826435pt;}
.y75{bottom:579.626435pt;}
.y1c{bottom:587.626432pt;}
.y4d{bottom:588.906431pt;}
.yba{bottom:588.907200pt;}
.y11c{bottom:592.107200pt;}
.yee{bottom:592.426430pt;}
.ya0{bottom:592.906430pt;}
.y159{bottom:595.626428pt;}
.y94{bottom:601.227200pt;}
.y1b{bottom:604.426425pt;}
.y4c{bottom:605.706424pt;}
.yb8{bottom:605.867200pt;}
.y11a{bottom:609.067200pt;}
.y8b{bottom:619.306419pt;}
.y1a{bottom:621.226418pt;}
.y4b{bottom:622.506418pt;}
.yb6{bottom:622.667200pt;}
.y118{bottom:625.867200pt;}
.yed{bottom:626.186416pt;}
.y19{bottom:638.186411pt;}
.y4a{bottom:639.466411pt;}
.yb4{bottom:639.627200pt;}
.y116{bottom:642.827200pt;}
.yec{bottom:643.146409pt;}
.y8c{bottom:648.106407pt;}
.y18{bottom:654.986405pt;}
.y49{bottom:656.266404pt;}
.yb2{bottom:656.427200pt;}
.y114{bottom:659.627200pt;}
.yb1{bottom:659.946403pt;}
.y17{bottom:671.946398pt;}
.y48{bottom:673.226397pt;}
.yaf{bottom:673.227200pt;}
.y112{bottom:676.427200pt;}
.y8d{bottom:676.746396pt;}
.y14a{bottom:679.946395pt;}
.y16{bottom:688.746391pt;}
.y47{bottom:690.026391pt;}
.yad{bottom:690.187200pt;}
.y110{bottom:693.387200pt;}
.yeb{bottom:693.706389pt;}
.y15{bottom:705.546384pt;}
.y46{bottom:706.986384pt;}
.yab{bottom:706.987200pt;}
.y93{bottom:707.466384pt;}
.y10e{bottom:710.187200pt;}
.yea{bottom:710.506382pt;}
.y10d{bottom:713.706381pt;}
.y14{bottom:722.506378pt;}
.y45{bottom:723.786377pt;}
.ya9{bottom:723.947200pt;}
.y10b{bottom:727.147200pt;}
.ya8{bottom:727.466376pt;}
.y149{bottom:730.666374pt;}
.y8e{bottom:734.346373pt;}
.y13{bottom:739.306371pt;}
.y44{bottom:740.586370pt;}
.ya6{bottom:740.747200pt;}
.y158{bottom:743.946369pt;}
.y12{bottom:756.266364pt;}
.y43{bottom:757.546364pt;}
.y138{bottom:760.907200pt;}
.ye9{bottom:761.066362pt;}
.y8f{bottom:762.986361pt;}
.y11{bottom:773.066357pt;}
.y42{bottom:774.346357pt;}
.ya4{bottom:774.507200pt;}
.ya3{bottom:778.026355pt;}
.y10{bottom:789.866351pt;}
.y41{bottom:791.306350pt;}
.y90{bottom:791.786350pt;}
.y12e{bottom:796.106348pt;}
.yf{bottom:806.826344pt;}
.y40{bottom:808.106343pt;}
.yc5{bottom:810.667200pt;}
.yc4{bottom:813.866341pt;}
.y12f{bottom:816.586340pt;}
.y154{bottom:819.627200pt;}
.y91{bottom:820.426338pt;}
.ye{bottom:823.626337pt;}
.y3f{bottom:824.906337pt;}
.y130{bottom:837.066332pt;}
.yc7{bottom:837.547200pt;}
.yf8{bottom:838.826331pt;}
.yd{bottom:840.586330pt;}
.y3e{bottom:841.866330pt;}
.y153{bottom:847.306328pt;}
.y15a{bottom:848.586327pt;}
.y92{bottom:849.226327pt;}
.yf7{bottom:854.186325pt;}
.yc{bottom:857.386324pt;}
.y131{bottom:857.706324pt;}
.y3d{bottom:858.666323pt;}
.yc9{bottom:866.667200pt;}
.y151{bottom:867.947200pt;}
.yd3{bottom:868.426319pt;}
.yb{bottom:873.866317pt;}
.y3c{bottom:875.626316pt;}
.yf6{bottom:876.106316pt;}
.y13a{bottom:876.266316pt;}
.y132{bottom:878.186315pt;}
.y73{bottom:888.907200pt;}
.ya{bottom:890.826310pt;}
.yf5{bottom:891.466310pt;}
.y72{bottom:892.106310pt;}
.y3b{bottom:892.426310pt;}
.y150{bottom:895.466308pt;}
.ycb{bottom:895.947200pt;}
.y133{bottom:898.666307pt;}
.y9{bottom:907.626304pt;}
.y97{bottom:908.906303pt;}
.y3a{bottom:909.226303pt;}
.yf4{bottom:913.386301pt;}
.y14e{bottom:916.107200pt;}
.y134{bottom:919.306299pt;}
.ycd{bottom:925.227200pt;}
.y96{bottom:925.866296pt;}
.y39{bottom:926.186296pt;}
.yf3{bottom:928.746295pt;}
.y8{bottom:932.586294pt;}
.y70{bottom:939.467200pt;}
.y135{bottom:939.786291pt;}
.y38{bottom:942.986289pt;}
.y7{bottom:949.386287pt;}
.yf2{bottom:950.506286pt;}
.ycf{bottom:954.347200pt;}
.y6e{bottom:956.427200pt;}
.y37{bottom:959.946283pt;}
.y136{bottom:960.266283pt;}
.yf1{bottom:965.866280pt;}
.y6c{bottom:973.227200pt;}
.y6{bottom:974.186277pt;}
.y36{bottom:976.746276pt;}
.y137{bottom:980.906274pt;}
.yd1{bottom:983.627200pt;}
.y6a{bottom:990.027200pt;}
.y5{bottom:991.146270pt;}
.y35{bottom:993.546269pt;}
.y68{bottom:1006.987200pt;}
.y148{bottom:1010.186263pt;}
.y34{bottom:1010.506262pt;}
.y66{bottom:1023.787200pt;}
.y4{bottom:1024.426257pt;}
.ya1{bottom:1026.986256pt;}
.y33{bottom:1027.306256pt;}
.y64{bottom:1040.747200pt;}
.y3{bottom:1042.666250pt;}
.ye8{bottom:1043.946249pt;}
.y32{bottom:1044.266249pt;}
.y1{bottom:1061.706242pt;}
.h13{height:14.400000pt;}
.hc{height:14.720000pt;}
.hd{height:14.880000pt;}
.hb{height:15.040000pt;}
.h10{height:16.000000pt;}
.he{height:16.160000pt;}
.h9{height:16.480000pt;}
.h8{height:16.640000pt;}
.h15{height:25.538550pt;}
.h12{height:27.680000pt;}
.h14{height:34.453111pt;}
.h11{height:36.104986pt;}
.h2{height:36.546545pt;}
.ha{height:36.759025pt;}
.hf{height:38.128110pt;}
.h6{height:40.391664pt;}
.h7{height:40.509424pt;}
.h4{height:40.744944pt;}
.h5{height:41.157104pt;}
.h1{height:42.262483pt;}
.h3{height:44.287982pt;}
.h0{height:1122.666667pt;}
.w5b{width:0.480000pt;}
.w3c{width:0.640000pt;}
.w6b{width:1.600000pt;}
.w1d{width:1.920000pt;}
.w20{width:2.080000pt;}
.w59{width:2.400000pt;}
.w2e{width:3.040000pt;}
.w2{width:3.360000pt;}
.w5c{width:4.320000pt;}
.w51{width:4.640000pt;}
.w28{width:4.960000pt;}
.w61{width:5.760000pt;}
.w2a{width:6.080000pt;}
.w3e{width:8.000000pt;}
.w3b{width:8.480000pt;}
.w9{width:9.120000pt;}
.w15{width:9.280000pt;}
.w40{width:9.600000pt;}
.w23{width:9.920000pt;}
.w64{width:10.080000pt;}
.w21{width:10.560000pt;}
.w4e{width:11.040000pt;}
.w1e{width:12.000000pt;}
.w27{width:12.800000pt;}
.w6{width:13.760000pt;}
.w4b{width:13.920000pt;}
.w8{width:14.240000pt;}
.w2b{width:16.320000pt;}
.w4d{width:16.800000pt;}
.w12{width:17.440000pt;}
.w11{width:17.760000pt;}
.w22{width:18.880000pt;}
.w5f{width:19.200000pt;}
.w56{width:19.680000pt;}
.w18{width:20.320000pt;}
.w2d{width:21.440000pt;}
.w67{width:22.880000pt;}
.w6c{width:23.200000pt;}
.w4f{width:24.320000pt;}
.w19{width:24.800000pt;}
.w41{width:26.240000pt;}
.w29{width:26.880000pt;}
.w13{width:27.040000pt;}
.we{width:27.520000pt;}
.w5d{width:30.400000pt;}
.w6a{width:30.560000pt;}
.w49{width:30.720000pt;}
.wd{width:34.560000pt;}
.w3{width:34.880000pt;}
.w47{width:36.000000pt;}
.w5e{width:36.320000pt;}
.w39{width:37.600000pt;}
.w45{width:37.760000pt;}
.w69{width:40.000000pt;}
.w35{width:46.880000pt;}
.w48{width:48.960000pt;}
.w5{width:49.920000pt;}
.w63{width:50.080000pt;}
.w38{width:52.320000pt;}
.w1a{width:58.560000pt;}
.w66{width:60.640000pt;}
.wa{width:62.400000pt;}
.w24{width:64.000000pt;}
.w3d{width:64.960000pt;}
.w1f{width:66.400000pt;}
.w43{width:69.120000pt;}
.w68{width:71.520000pt;}
.w4a{width:73.440000pt;}
.wc{width:74.880000pt;}
.w65{width:75.200000pt;}
.w42{width:76.320000pt;}
.w1c{width:79.840000pt;}
.w1b{width:80.000000pt;}
.w3f{width:80.160000pt;}
.w17{width:80.960000pt;}
.w1{width:85.120000pt;}
.w25{width:86.560000pt;}
.w32{width:93.920000pt;}
.w10{width:94.560000pt;}
.w37{width:97.760000pt;}
.w62{width:101.280000pt;}
.w14{width:103.840000pt;}
.w3a{width:104.000000pt;}
.w31{width:117.440000pt;}
.w16{width:119.360000pt;}
.w34{width:119.520000pt;}
.w4c{width:120.480000pt;}
.w30{width:123.680000pt;}
.w53{width:136.320000pt;}
.w57{width:142.560000pt;}
.w58{width:144.320000pt;}
.w36{width:148.000000pt;}
.w54{width:150.560000pt;}
.w7{width:158.720000pt;}
.w2f{width:159.200000pt;}
.w44{width:159.680000pt;}
.w46{width:179.360000pt;}
.w33{width:186.720000pt;}
.w26{width:200.640000pt;}
.wb{width:206.880000pt;}
.w4{width:211.360000pt;}
.w52{width:227.200000pt;}
.w55{width:233.120000pt;}
.w60{width:238.080000pt;}
.w2c{width:260.640000pt;}
.w50{width:277.440000pt;}
.w5a{width:284.480000pt;}
.wf{width:286.880000pt;}
.w0{width:793.333333pt;}
.x31{left:-498.240051pt;}
.x75{left:-487.520056pt;}
.xa8{left:-466.240064pt;}
.x36{left:-445.600072pt;}
.xaa{left:-372.160102pt;}
.x6c{left:-350.880110pt;}
.xaf{left:-284.480137pt;}
.x1e{left:-211.360051pt;}
.x5b{left:-200.640056pt;}
.x6f{left:-186.720176pt;}
.x8a{left:-179.360064pt;}
.x88{left:-159.680072pt;}
.x25{left:-158.720072pt;}
.xab{left:-150.560190pt;}
.xae{left:-144.320193pt;}
.x6d{left:-123.680201pt;}
.x98{left:-120.480088pt;}
.xb3{left:-101.280210pt;}
.x71{left:-97.760211pt;}
.x55{left:-86.560101pt;}
.x15{left:-85.120102pt;}
.x39{left:-80.960218pt;}
.x2f{left:-74.880221pt;}
.x94{left:-73.440106pt;}
.x50{left:-64.000110pt;}
.x2e{left:-62.400226pt;}
.xa9{left:-52.320230pt;}
.x20{left:-49.920116pt;}
.x92{left:-48.960116pt;}
.x70{left:-46.880232pt;}
.x73{left:-37.600236pt;}
.x8e{left:-36.000121pt;}
.x1b{left:-34.880122pt;}
.x93{left:-30.720124pt;}
.x30{left:-27.520240pt;}
.x3a{left:-24.800241pt;}
.x6a{left:-21.440242pt;}
.xad{left:-19.680243pt;}
.x4a{left:-18.720128pt;}
.x33{left:-17.440244pt;}
.x69{left:-16.320129pt;}
.x23{left:-13.760130pt;}
.x5e{left:-12.480131pt;}
.x38{left:-9.280247pt;}
.x61{left:-6.080133pt;}
.x5f{left:-4.960134pt;}
.x18{left:-3.360134pt;}
.x0{left:0.000000pt;}
.x9b{left:1.439864pt;}
.x7e{left:12.639900pt;}
.x6{left:128.159949pt;}
.x42{left:138.880000pt;}
.x4{left:157.439937pt;}
.x77{left:160.160000pt;}
.x7{left:176.159875pt;}
.x76{left:179.840000pt;}
.x10{left:180.800000pt;}
.x3c{left:196.479921pt;}
.x83{left:200.479920pt;}
.x7c{left:214.559914pt;}
.x7b{left:219.040000pt;}
.x7d{left:237.120000pt;}
.x87{left:239.839904pt;}
.x13{left:247.039901pt;}
.x11{left:249.279900pt;}
.x41{left:252.960000pt;}
.xa{left:254.400000pt;}
.x85{left:257.599897pt;}
.x7f{left:260.000000pt;}
.x84{left:264.319894pt;}
.x46{left:266.880000pt;}
.x40{left:275.520000pt;}
.xe{left:277.759889pt;}
.x12{left:280.479888pt;}
.x80{left:282.720000pt;}
.x48{left:288.319885pt;}
.xd{left:289.600000pt;}
.x79{left:290.560000pt;}
.x44{left:293.279883pt;}
.x86{left:296.000000pt;}
.x8{left:298.079881pt;}
.x3e{left:301.759879pt;}
.x78{left:303.520000pt;}
.xc{left:304.640000pt;}
.x81{left:305.600000pt;}
.x7a{left:308.800000pt;}
.x9{left:317.919873pt;}
.x3d{left:320.640000pt;}
.x49{left:323.200000pt;}
.xf{left:325.760000pt;}
.x43{left:326.720000pt;}
.x82{left:328.480000pt;}
.x3f{left:329.600000pt;}
.x47{left:333.440000pt;}
.x45{left:334.560000pt;}
.xb{left:336.160000pt;}
.x14{left:339.520000pt;}
.x4e{left:342.559863pt;}
.x97{left:344.479862pt;}
.x16{left:348.639861pt;}
.x9c{left:351.200000pt;}
.x63{left:352.479859pt;}
.x62{left:354.719858pt;}
.x21{left:357.279857pt;}
.x64{left:358.879856pt;}
.x2a{left:359.839856pt;}
.x9a{left:365.440001pt;}
.x24{left:366.559853pt;}
.x95{left:369.919852pt;}
.x1c{left:374.079850pt;}
.x5{left:375.360534pt;}
.x5c{left:383.679847pt;}
.x59{left:391.839843pt;}
.x9d{left:396.800000pt;}
.x2c{left:398.079841pt;}
.x2{left:405.439838pt;}
.xa1{left:413.280000pt;}
.x1{left:415.359834pt;}
.x9e{left:419.680000pt;}
.x3{left:425.439830pt;}
.x68{left:433.119827pt;}
.x1f{left:434.079826pt;}
.x67{left:436.319825pt;}
.x65{left:438.399825pt;}
.x4f{left:439.359588pt;}
.x66{left:440.479824pt;}
.x26{left:443.359823pt;}
.x53{left:456.959817pt;}
.x28{left:458.879816pt;}
.x9f{left:465.280000pt;}
.xa2{left:471.840000pt;}
.x8d{left:475.840000pt;}
.x91{left:482.080000pt;}
.x60{left:484.479806pt;}
.x57{left:487.519805pt;}
.x51{left:498.719801pt;}
.xa3{left:501.120000pt;}
.x52{left:502.720000pt;}
.xa0{left:525.120000pt;}
.x58{left:528.640000pt;}
.xa4{left:530.400000pt;}
.x29{left:545.440000pt;}
.x19{left:546.399781pt;}
.x1a{left:551.520000pt;}
.xa5{left:559.680000pt;}
.x17{left:564.000000pt;}
.x8b{left:566.719773pt;}
.x8f{left:572.639771pt;}
.x8c{left:574.080000pt;}
.x5d{left:577.439831pt;}
.x56{left:579.520000pt;}
.x5a{left:588.800000pt;}
.x96{left:590.080000pt;}
.x1d{left:598.880000pt;}
.x4b{left:599.999760pt;}
.x2b{left:601.600000pt;}
.x4c{left:604.960000pt;}
.x90{left:606.720000pt;}
.x22{left:608.960000pt;}
.x4d{left:610.399756pt;}
.x99{left:615.359693pt;}
.x27{left:617.120000pt;}
.x89{left:621.760000pt;}
.x54{left:623.360000pt;}
.x2d{left:626.400000pt;}
.x32{left:628.319749pt;}
.xb4{left:632.159747pt;}
.x6b{left:634.239746pt;}
.x6e{left:635.999746pt;}
.x3b{left:636.959745pt;}
.x34{left:638.239745pt;}
.x35{left:645.439740pt;}
.xac{left:649.279740pt;}
.xa6{left:651.039740pt;}
.x72{left:652.639739pt;}
.xb2{left:656.959737pt;}
.xa7{left:663.839729pt;}
.xb1{left:666.399733pt;}
.x37{left:692.799723pt;}
.xb0{left:697.919721pt;}
.x74{left:702.719719pt;}
}




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