
    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_646d734391d03870c9bac418.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.933594;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_dba7bba1c02e16cad662c83b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910156;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_73a4bb8f79fc8c500e1d17c4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_2e5acba1b04f78084dfa268f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893066;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_132d3a75ee66bcc81c3061e1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893555;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_dc017a255b68bcfe6d7e7695.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_2687f30ba1decfbbdd3b5c89.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.734375;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.457020px;}
.ls4{letter-spacing:0.457029px;}
.ls3{letter-spacing:0.457033px;}
.ls2{letter-spacing:0.457065px;}
.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;}
}
.ws7{word-spacing:-59.999999px;}
.ws2{word-spacing:-31.500000px;}
.ws1{word-spacing:-29.999999px;}
.ws4{word-spacing:-15.750000px;}
.ws0{word-spacing:-15.000000px;}
.ws3{word-spacing:-13.500000px;}
.ws8{word-spacing:-12.000000px;}
.ws5{word-spacing:-10.500000px;}
.ws6{word-spacing:0.000000px;}
._0{margin-left:-10.921239px;}
._2a{margin-left:-7.759069px;}
._1{margin-left:-5.513013px;}
._27{margin-left:-4.469993px;}
._2{margin-left:-3.322087px;}
._3{margin-left:-1.951178px;}
._2f{width:3.496163px;}
._5{width:4.500000px;}
._4{width:8.024422px;}
._6{width:9.975569px;}
._22{width:12.496718px;}
._c{width:13.500002px;}
._2e{width:16.031247px;}
._12{width:17.999999px;}
._7{width:22.500002px;}
._b{width:27.000006px;}
._a{width:31.499998px;}
._9{width:36.000010px;}
._8{width:40.500000px;}
._11{width:44.999998px;}
._1c{width:49.424082px;}
._1b{width:53.859019px;}
._26{width:55.089845px;}
._16{width:58.433010px;}
._14{width:63.000002px;}
._13{width:67.499998px;}
._1a{width:71.023265px;}
._10{width:72.813027px;}
._f{width:75.686984px;}
._e{width:77.313017px;}
._d{width:80.999999px;}
._1e{width:85.390190px;}
._1d{width:89.960337px;}
._25{width:100.514661px;}
._29{width:103.452580px;}
._28{width:107.873276px;}
._20{width:110.508797px;}
._2b{width:112.715470px;}
._19{width:116.914841px;}
._15{width:120.502937px;}
._18{width:122.197698px;}
._1f{width:125.931776px;}
._17{width:139.416258px;}
._21{width:143.860347px;}
._2d{width:157.348684px;}
._2c{width:161.868525px;}
._24{width:170.868166px;}
._23{width:175.394035px;}
._31{width:220.382809px;}
._30{width:225.853523px;}
.fc1{color:rgb(17,85,204);}
.fc2{color:rgb(31,31,31);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.999999px;}
.fs6{font-size:48.000002px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:59.999999px;}
.fs3{font-size:63.000000px;}
.fs2{font-size:66.000002px;}
.fs1{font-size:156.000006px;}
.y0{bottom:0.000000px;}
.y2{bottom:12.996093px;}
.y62{bottom:57.244623px;}
.y61{bottom:73.844235px;}
.y37{bottom:113.819819px;}
.yc1{bottom:113.987914px;}
.y60{bottom:114.158564px;}
.yfa{bottom:123.961304px;}
.y36{bottom:130.205939px;}
.y5f{bottom:130.544684px;}
.y9a{bottom:130.735469px;}
.y12b{bottom:136.735469px;}
.yf9{bottom:140.347409px;}
.y161{bottom:142.343996px;}
.y35{bottom:146.592044px;}
.y99{bottom:147.121589px;}
.yc0{bottom:149.074214px;}
.y160{bottom:152.693111px;}
.y12a{bottom:153.121589px;}
.y5e{bottom:155.930789px;}
.yf8{bottom:156.733514px;}
.y34{bottom:162.978149px;}
.y15f{bottom:163.042241px;}
.y98{bottom:163.507694px;}
.ybf{bottom:165.460334px;}
.y129{bottom:169.507694px;}
.y5d{bottom:172.316894px;}
.yf7{bottom:173.119634px;}
.y15e{bottom:177.141356px;}
.y33{bottom:179.364254px;}
.y97{bottom:179.893799px;}
.ybe{bottom:181.846439px;}
.y128{bottom:185.893799px;}
.y15d{bottom:187.490471px;}
.y5c{bottom:188.702999px;}
.yf6{bottom:189.505739px;}
.y32{bottom:195.750359px;}
.y96{bottom:196.279904px;}
.y15c{bottom:197.839601px;}
.ybd{bottom:198.232544px;}
.y127{bottom:202.279904px;}
.y5b{bottom:205.089104px;}
.yf5{bottom:205.891844px;}
.y15b{bottom:208.188716px;}
.y31{bottom:212.136479px;}
.y95{bottom:212.666009px;}
.ybc{bottom:214.618649px;}
.y126{bottom:218.666009px;}
.y5a{bottom:221.475224px;}
.yf4{bottom:222.277949px;}
.y15a{bottom:222.287846px;}
.y30{bottom:228.522584px;}
.y94{bottom:229.052129px;}
.ybb{bottom:231.004754px;}
.y159{bottom:232.636961px;}
.y125{bottom:235.052129px;}
.y59{bottom:237.861329px;}
.yf3{bottom:238.664069px;}
.y158{bottom:242.986091px;}
.y2f{bottom:244.908689px;}
.y93{bottom:245.438234px;}
.yba{bottom:247.390874px;}
.y124{bottom:251.438234px;}
.y58{bottom:254.247434px;}
.yf2{bottom:255.050174px;}
.y157{bottom:257.085206px;}
.y2e{bottom:261.294794px;}
.y92{bottom:261.824339px;}
.yb9{bottom:263.776979px;}
.y156{bottom:267.434321px;}
.y123{bottom:267.824339px;}
.y57{bottom:270.633539px;}
.yf1{bottom:271.436279px;}
.y2d{bottom:277.680914px;}
.y91{bottom:278.210444px;}
.yb8{bottom:280.163084px;}
.y155{bottom:281.533451px;}
.y56{bottom:287.019659px;}
.yf0{bottom:287.822384px;}
.y122{bottom:290.372674px;}
.y154{bottom:291.882566px;}
.y90{bottom:294.596564px;}
.yb7{bottom:296.549189px;}
.y2c{bottom:300.229248px;}
.y153{bottom:302.231696px;}
.y55{bottom:303.405764px;}
.yef{bottom:304.208489px;}
.yb6{bottom:312.935309px;}
.y152{bottom:316.330811px;}
.y121{bottom:319.458989px;}
.y54{bottom:319.791869px;}
.y8f{bottom:319.982669px;}
.yee{bottom:320.594597px;}
.y151{bottom:326.679926px;}
.y2b{bottom:329.477778px;}
.y120{bottom:335.845094px;}
.y53{bottom:336.177974px;}
.y8e{bottom:336.368774px;}
.y150{bottom:337.029056px;}
.yb5{bottom:338.321414px;}
.yed{bottom:346.043339px;}
.y14f{bottom:351.128171px;}
.y11f{bottom:352.231199px;}
.y52{bottom:352.564094px;}
.y8d{bottom:352.754879px;}
.yb4{bottom:354.707519px;}
.y2a{bottom:355.401849px;}
.y14e{bottom:361.477301px;}
.yec{bottom:362.429444px;}
.y11e{bottom:368.617304px;}
.y51{bottom:368.950199px;}
.y8c{bottom:369.140984px;}
.y29{bottom:370.925544px;}
.yb3{bottom:371.093624px;}
.y14d{bottom:375.576416px;}
.yeb{bottom:378.815549px;}
.y11d{bottom:385.003424px;}
.y50{bottom:385.336304px;}
.y8b{bottom:385.527104px;}
.y14c{bottom:385.925531px;}
.y28{bottom:386.449224px;}
.yb2{bottom:387.479729px;}
.yea{bottom:395.201654px;}
.y14b{bottom:400.024661px;}
.y11c{bottom:401.389529px;}
.y4f{bottom:401.722409px;}
.y8a{bottom:401.913209px;}
.y27{bottom:401.972904px;}
.yb1{bottom:403.865849px;}
.y14a{bottom:410.373776px;}
.ye9{bottom:411.587774px;}
.y26{bottom:417.496584px;}
.y11b{bottom:417.775634px;}
.y4e{bottom:418.108514px;}
.y89{bottom:418.299314px;}
.yb0{bottom:420.251954px;}
.y149{bottom:420.722906px;}
.ye8{bottom:427.973879px;}
.y25{bottom:433.020264px;}
.y11a{bottom:434.161739px;}
.y4d{bottom:434.494634px;}
.y88{bottom:434.685419px;}
.y148{bottom:434.822021px;}
.yaf{bottom:436.638059px;}
.ye7{bottom:444.359984px;}
.y147{bottom:445.171136px;}
.y119{bottom:450.547844px;}
.y4c{bottom:450.880739px;}
.y87{bottom:451.071539px;}
.yae{bottom:453.024164px;}
.y146{bottom:459.270266px;}
.ye6{bottom:460.746092px;}
.y24{bottom:463.543944px;}
.y118{bottom:466.933964px;}
.y86{bottom:467.457644px;}
.yad{bottom:469.410284px;}
.y145{bottom:469.619381px;}
.y4b{bottom:476.266844px;}
.y23{bottom:479.067624px;}
.y117{bottom:483.320069px;}
.y144{bottom:483.718511px;}
.y85{bottom:483.843749px;}
.yac{bottom:485.796389px;}
.ye5{bottom:486.194819px;}
.y4a{bottom:492.652949px;}
.y143{bottom:494.067626px;}
.y22{bottom:494.591304px;}
.y116{bottom:499.706174px;}
.yab{bottom:502.182494px;}
.ye4{bottom:502.580939px;}
.y84{bottom:506.392083px;}
.y142{bottom:508.166741px;}
.y49{bottom:509.039069px;}
.y21{bottom:510.114984px;}
.y115{bottom:516.092279px;}
.y141{bottom:518.515871px;}
.yaa{bottom:518.568599px;}
.ye3{bottom:518.967044px;}
.y48{bottom:525.425174px;}
.y20{bottom:525.638664px;}
.y140{bottom:528.864986px;}
.y114{bottom:532.478399px;}
.ya9{bottom:534.954719px;}
.ye2{bottom:535.353149px;}
.y13f{bottom:539.214116px;}
.y1f{bottom:541.162359px;}
.y83{bottom:541.640629px;}
.y47{bottom:541.811279px;}
.ya8{bottom:551.340824px;}
.ye1{bottom:551.739254px;}
.y13e{bottom:553.313231px;}
.y1e{bottom:556.686039px;}
.y113{bottom:557.864504px;}
.y46{bottom:558.197384px;}
.y13d{bottom:563.662346px;}
.ya7{bottom:567.726929px;}
.ye0{bottom:568.125362px;}
.y1d{bottom:572.209719px;}
.y112{bottom:574.250609px;}
.y45{bottom:574.583489px;}
.y82{bottom:576.726929px;}
.y13c{bottom:577.761476px;}
.ya6{bottom:584.113034px;}
.y13b{bottom:588.110591px;}
.y1c{bottom:588.220088px;}
.y111{bottom:590.636714px;}
.y44{bottom:590.969609px;}
.y81{bottom:593.113034px;}
.ydf{bottom:593.574104px;}
.ya5{bottom:600.499139px;}
.y13a{bottom:602.209721px;}
.y1b{bottom:606.331058px;}
.y110{bottom:607.022834px;}
.y80{bottom:609.499139px;}
.yde{bottom:609.960209px;}
.y139{bottom:612.558836px;}
.y43{bottom:616.355714px;}
.ya4{bottom:616.885259px;}
.y10f{bottom:623.408939px;}
.y1a{bottom:624.442013px;}
.y7f{bottom:625.885259px;}
.ydd{bottom:626.346314px;}
.y138{bottom:626.657966px;}
.y42{bottom:632.741819px;}
.ya3{bottom:633.271364px;}
.y137{bottom:637.007081px;}
.y10e{bottom:639.795044px;}
.y7e{bottom:642.271364px;}
.y19{bottom:642.552983px;}
.ydc{bottom:642.732419px;}
.y136{bottom:647.356196px;}
.y41{bottom:649.127924px;}
.ya2{bottom:649.657469px;}
.y10d{bottom:656.181149px;}
.y135{bottom:657.705326px;}
.y7d{bottom:658.657469px;}
.ydb{bottom:659.118524px;}
.y18{bottom:660.663938px;}
.y40{bottom:665.514044px;}
.y134{bottom:671.804441px;}
.y10c{bottom:672.567254px;}
.y7c{bottom:675.043574px;}
.yda{bottom:675.504644px;}
.y17{bottom:678.774908px;}
.y3f{bottom:681.900149px;}
.y133{bottom:682.153571px;}
.y10b{bottom:688.953374px;}
.y7b{bottom:691.429694px;}
.yd9{bottom:691.890752px;}
.y132{bottom:696.252686px;}
.y16{bottom:696.885863px;}
.y3e{bottom:698.286254px;}
.y10a{bottom:705.339479px;}
.y131{bottom:706.601801px;}
.y7a{bottom:707.815799px;}
.y3d{bottom:714.672359px;}
.y15{bottom:714.996833px;}
.y130{bottom:716.950931px;}
.yd8{bottom:717.339479px;}
.y109{bottom:721.725584px;}
.y79{bottom:724.201904px;}
.y12f{bottom:731.050046px;}
.y3c{bottom:731.058479px;}
.y14{bottom:733.107788px;}
.yd7{bottom:733.725584px;}
.y108{bottom:738.111689px;}
.y78{bottom:740.588009px;}
.y12e{bottom:741.399176px;}
.y3b{bottom:747.444584px;}
.yd6{bottom:750.111689px;}
.y13{bottom:750.732054px;}
.y107{bottom:754.497809px;}
.y77{bottom:756.974114px;}
.y3a{bottom:763.830689px;}
.y12{bottom:766.255734px;}
.yd5{bottom:766.497809px;}
.y106{bottom:770.883914px;}
.y12d{bottom:771.046144px;}
.y76{bottom:773.360234px;}
.y39{bottom:780.216794px;}
.y11{bottom:781.779414px;}
.yd4{bottom:782.883914px;}
.y105{bottom:787.270019px;}
.y75{bottom:789.746339px;}
.y38{bottom:796.602899px;}
.y10{bottom:797.303094px;}
.yd3{bottom:799.270019px;}
.y104{bottom:803.656124px;}
.y74{bottom:806.132444px;}
.yd2{bottom:815.656124px;}
.y73{bottom:822.518549px;}
.y103{bottom:829.042229px;}
.yf{bottom:831.151249px;}
.ya1{bottom:838.904669px;}
.yd1{bottom:841.042229px;}
.y102{bottom:845.428349px;}
.y72{bottom:847.904669px;}
.ya{bottom:850.338134px;}
.ya0{bottom:855.290774px;}
.y176{bottom:856.013673px;}
.yd0{bottom:857.428349px;}
.y101{bottom:861.814454px;}
.y71{bottom:864.290774px;}
.ye{bottom:866.562008px;}
.yb{bottom:867.586663px;}
.y9{bottom:868.987053px;}
.y9f{bottom:871.676879px;}
.ycf{bottom:873.814454px;}
.y175{bottom:875.714351px;}
.y100{bottom:878.200559px;}
.y70{bottom:880.676879px;}
.yd{bottom:884.672978px;}
.y174{bottom:886.063481px;}
.y8{bottom:886.235598px;}
.y9e{bottom:888.062984px;}
.yce{bottom:890.200559px;}
.yff{bottom:894.586664px;}
.y173{bottom:896.412596px;}
.y6f{bottom:897.062984px;}
.yc{bottom:902.783933px;}
.y7{bottom:903.484128px;}
.y9d{bottom:904.449104px;}
.ycd{bottom:906.586664px;}
.y172{bottom:910.511711px;}
.yfe{bottom:910.972784px;}
.y6e{bottom:913.449104px;}
.y9c{bottom:920.835209px;}
.y171{bottom:920.860841px;}
.y6{bottom:921.057129px;}
.ycc{bottom:922.972784px;}
.yfd{bottom:927.358886px;}
.y6d{bottom:929.835205px;}
.y170{bottom:934.959961px;}
.y9b{bottom:937.221314px;}
.ycb{bottom:939.358886px;}
.yfc{bottom:943.744996px;}
.y16f{bottom:945.309082px;}
.y6c{bottom:946.221314px;}
.y12c{bottom:953.607422px;}
.y16e{bottom:955.658203px;}
.yca{bottom:955.744996px;}
.y6b{bottom:962.607422px;}
.y5{bottom:962.897461px;}
.yfb{bottom:966.293335px;}
.y16d{bottom:969.757324px;}
.yc9{bottom:972.131104px;}
.y6a{bottom:978.993530px;}
.y16c{bottom:980.106445px;}
.yc8{bottom:988.517212px;}
.y16b{bottom:994.205566px;}
.y69{bottom:995.379638px;}
.y16a{bottom:1004.554687px;}
.yc7{bottom:1004.903320px;}
.y4{bottom:1007.743652px;}
.y68{bottom:1011.765748px;}
.y169{bottom:1018.653809px;}
.yc6{bottom:1021.289429px;}
.y67{bottom:1028.151856px;}
.y168{bottom:1029.002930px;}
.yc5{bottom:1037.675537px;}
.y167{bottom:1043.102051px;}
.y66{bottom:1044.537964px;}
.y3{bottom:1052.589845px;}
.y166{bottom:1053.451172px;}
.yc4{bottom:1054.061645px;}
.y65{bottom:1060.924072px;}
.y165{bottom:1063.800293px;}
.yc3{bottom:1070.447755px;}
.y64{bottom:1077.310181px;}
.y164{bottom:1077.899414px;}
.y163{bottom:1088.248535px;}
.yc2{bottom:1092.996093px;}
.y63{bottom:1093.696289px;}
.y162{bottom:1098.597656px;}
.y1{bottom:1107.000000px;}
.hb{height:34.453126px;}
.he{height:34.875001px;}
.h9{height:36.571289px;}
.h7{height:36.597656px;}
.hc{height:40.664061px;}
.h5{height:41.660155px;}
.h6{height:41.689452px;}
.h8{height:42.697266px;}
.h2{height:43.066405px;}
.hd{height:43.593749px;}
.h4{height:47.373048px;}
.h1{height:81.000000px;}
.ha{height:108.000000px;}
.h3{height:111.972661px;}
.h0{height:1188.000000px;}
.w2{width:209.250022px;}
.w3{width:209.250047px;}
.w1{width:249.209998px;}
.w4{width:250.289977px;}
.w5{width:458.459970px;}
.w6{width:459.540030px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1a{left:13.500000px;}
.xf{left:15.344467px;}
.x13{left:19.056335px;}
.x1b{left:34.875000px;}
.xd{left:35.928513px;}
.x24{left:40.500000px;}
.x11{left:47.595108px;}
.xe{left:48.705311px;}
.xb{left:50.073642px;}
.x10{left:51.226681px;}
.x15{left:56.343384px;}
.x1f{left:61.875000px;}
.x6{left:64.529685px;}
.x14{left:66.875427px;}
.xc{left:70.935606px;}
.x9{left:74.870824px;}
.x20{left:76.363701px;}
.x16{left:87.209999px;}
.x19{left:88.334999px;}
.x21{left:89.889931px;}
.x23{left:93.959999px;}
.x5{left:99.191559px;}
.x4{left:104.936079px;}
.x8{left:114.223157px;}
.x3{left:115.272995px;}
.x7{left:127.555357px;}
.x1c{left:139.355051px;}
.x2{left:140.450166px;}
.x1e{left:152.692892px;}
.x18{left:199.949870px;}
.x1d{left:202.500000px;}
.x22{left:221.513878px;}
.xa{left:249.209998px;}
.x17{left:255.959999px;}
.x1{left:459.000010px;}
.x12{left:667.710015px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.406240pt;}
.ls4{letter-spacing:0.406248pt;}
.ls3{letter-spacing:0.406252pt;}
.ls2{letter-spacing:0.406280pt;}
.ws7{word-spacing:-53.333332pt;}
.ws2{word-spacing:-28.000000pt;}
.ws1{word-spacing:-26.666666pt;}
.ws4{word-spacing:-14.000000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws3{word-spacing:-12.000000pt;}
.ws8{word-spacing:-10.666667pt;}
.ws5{word-spacing:-9.333333pt;}
.ws6{word-spacing:0.000000pt;}
._0{margin-left:-9.707768pt;}
._2a{margin-left:-6.896951pt;}
._1{margin-left:-4.900456pt;}
._27{margin-left:-3.973327pt;}
._2{margin-left:-2.952966pt;}
._3{margin-left:-1.734380pt;}
._2f{width:3.107700pt;}
._5{width:4.000000pt;}
._4{width:7.132820pt;}
._6{width:8.867173pt;}
._22{width:11.108194pt;}
._c{width:12.000002pt;}
._2e{width:14.249998pt;}
._12{width:15.999999pt;}
._7{width:20.000002pt;}
._b{width:24.000005pt;}
._a{width:27.999998pt;}
._9{width:32.000009pt;}
._8{width:36.000000pt;}
._11{width:39.999998pt;}
._1c{width:43.932517pt;}
._1b{width:47.874684pt;}
._26{width:48.968751pt;}
._16{width:51.940453pt;}
._14{width:56.000002pt;}
._13{width:59.999999pt;}
._1a{width:63.131791pt;}
._10{width:64.722691pt;}
._f{width:67.277319pt;}
._e{width:68.722681pt;}
._d{width:71.999999pt;}
._1e{width:75.902391pt;}
._1d{width:79.964744pt;}
._25{width:89.346366pt;}
._29{width:91.957849pt;}
._28{width:95.887357pt;}
._20{width:98.230042pt;}
._2b{width:100.191528pt;}
._19{width:103.924303pt;}
._15{width:107.113722pt;}
._18{width:108.620176pt;}
._1f{width:111.939356pt;}
._17{width:123.925562pt;}
._21{width:127.875864pt;}
._2d{width:139.865497pt;}
._2c{width:143.883134pt;}
._24{width:151.882814pt;}
._23{width:155.905809pt;}
._31{width:195.895830pt;}
._30{width:200.758687pt;}
.fs5{font-size:37.333332pt;}
.fs6{font-size:42.666668pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.333332pt;}
.fs3{font-size:56.000000pt;}
.fs2{font-size:58.666668pt;}
.fs1{font-size:138.666672pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:11.552083pt;}
.y62{bottom:50.884110pt;}
.y61{bottom:65.639320pt;}
.y37{bottom:101.173173pt;}
.yc1{bottom:101.322591pt;}
.y60{bottom:101.474279pt;}
.yfa{bottom:110.187826pt;}
.y36{bottom:115.738613pt;}
.y5f{bottom:116.039719pt;}
.y9a{bottom:116.209306pt;}
.y12b{bottom:121.542639pt;}
.yf9{bottom:124.753253pt;}
.y161{bottom:126.527997pt;}
.y35{bottom:130.304039pt;}
.y99{bottom:130.774746pt;}
.yc0{bottom:132.510413pt;}
.y160{bottom:135.727210pt;}
.y12a{bottom:136.108079pt;}
.y5e{bottom:138.605146pt;}
.yf8{bottom:139.318679pt;}
.y34{bottom:144.869466pt;}
.y15f{bottom:144.926437pt;}
.y98{bottom:145.340173pt;}
.ybf{bottom:147.075853pt;}
.y129{bottom:150.673506pt;}
.y5d{bottom:153.170573pt;}
.yf7{bottom:153.884119pt;}
.y15e{bottom:157.458983pt;}
.y33{bottom:159.434893pt;}
.y97{bottom:159.905599pt;}
.ybe{bottom:161.641279pt;}
.y128{bottom:165.238933pt;}
.y15d{bottom:166.658197pt;}
.y5c{bottom:167.735999pt;}
.yf6{bottom:168.449546pt;}
.y32{bottom:174.000319pt;}
.y96{bottom:174.471026pt;}
.y15c{bottom:175.857423pt;}
.ybd{bottom:176.206706pt;}
.y127{bottom:179.804359pt;}
.y5b{bottom:182.301426pt;}
.yf5{bottom:183.014973pt;}
.y15b{bottom:185.056637pt;}
.y31{bottom:188.565759pt;}
.y95{bottom:189.036453pt;}
.ybc{bottom:190.772133pt;}
.y126{bottom:194.369786pt;}
.y5a{bottom:196.866866pt;}
.yf4{bottom:197.580399pt;}
.y15a{bottom:197.589197pt;}
.y30{bottom:203.131186pt;}
.y94{bottom:203.601893pt;}
.ybb{bottom:205.337559pt;}
.y159{bottom:206.788410pt;}
.y125{bottom:208.935226pt;}
.y59{bottom:211.432293pt;}
.yf3{bottom:212.145839pt;}
.y158{bottom:215.987637pt;}
.y2f{bottom:217.696613pt;}
.y93{bottom:218.167319pt;}
.yba{bottom:219.902999pt;}
.y124{bottom:223.500653pt;}
.y58{bottom:225.997719pt;}
.yf2{bottom:226.711266pt;}
.y157{bottom:228.520183pt;}
.y2e{bottom:232.262039pt;}
.y92{bottom:232.732746pt;}
.yb9{bottom:234.468426pt;}
.y156{bottom:237.719397pt;}
.y123{bottom:238.066079pt;}
.y57{bottom:240.563146pt;}
.yf1{bottom:241.276693pt;}
.y2d{bottom:246.827479pt;}
.y91{bottom:247.298173pt;}
.yb8{bottom:249.033853pt;}
.y155{bottom:250.251957pt;}
.y56{bottom:255.128586pt;}
.yf0{bottom:255.842119pt;}
.y122{bottom:258.109044pt;}
.y154{bottom:259.451170pt;}
.y90{bottom:261.863613pt;}
.yb7{bottom:263.599279pt;}
.y2c{bottom:266.870443pt;}
.y153{bottom:268.650397pt;}
.y55{bottom:269.694013pt;}
.yef{bottom:270.407546pt;}
.yb6{bottom:278.164719pt;}
.y152{bottom:281.182943pt;}
.y121{bottom:283.963546pt;}
.y54{bottom:284.259439pt;}
.y8f{bottom:284.429039pt;}
.yee{bottom:284.972975pt;}
.y151{bottom:290.382157pt;}
.y2b{bottom:292.869136pt;}
.y120{bottom:298.528973pt;}
.y53{bottom:298.824866pt;}
.y8e{bottom:298.994466pt;}
.y150{bottom:299.581383pt;}
.yb5{bottom:300.730146pt;}
.yed{bottom:307.594079pt;}
.y14f{bottom:312.113930pt;}
.y11f{bottom:313.094399pt;}
.y52{bottom:313.390306pt;}
.y8d{bottom:313.559893pt;}
.yb4{bottom:315.295573pt;}
.y2a{bottom:315.912755pt;}
.y14e{bottom:321.313157pt;}
.yec{bottom:322.159506pt;}
.y11e{bottom:327.659826pt;}
.y51{bottom:327.955733pt;}
.y8c{bottom:328.125319pt;}
.y29{bottom:329.711595pt;}
.yb3{bottom:329.860999pt;}
.y14d{bottom:333.845703pt;}
.yeb{bottom:336.724933pt;}
.y11d{bottom:342.225266pt;}
.y50{bottom:342.521159pt;}
.y8b{bottom:342.690759pt;}
.y14c{bottom:343.044917pt;}
.y28{bottom:343.510422pt;}
.yb2{bottom:344.426426pt;}
.yea{bottom:351.290359pt;}
.y14b{bottom:355.577477pt;}
.y11c{bottom:356.790693pt;}
.y4f{bottom:357.086586pt;}
.y8a{bottom:357.256186pt;}
.y27{bottom:357.309248pt;}
.yb1{bottom:358.991866pt;}
.y14a{bottom:364.776690pt;}
.ye9{bottom:365.855799pt;}
.y26{bottom:371.108075pt;}
.y11b{bottom:371.356119pt;}
.y4e{bottom:371.652013pt;}
.y89{bottom:371.821613pt;}
.yb0{bottom:373.557293pt;}
.y149{bottom:373.975917pt;}
.ye8{bottom:380.421226pt;}
.y25{bottom:384.906902pt;}
.y11a{bottom:385.921546pt;}
.y4d{bottom:386.217453pt;}
.y88{bottom:386.387039pt;}
.y148{bottom:386.508463pt;}
.yaf{bottom:388.122719pt;}
.ye7{bottom:394.986653pt;}
.y147{bottom:395.707677pt;}
.y119{bottom:400.486973pt;}
.y4c{bottom:400.782879pt;}
.y87{bottom:400.952479pt;}
.yae{bottom:402.688146pt;}
.y146{bottom:408.240237pt;}
.ye6{bottom:409.552082pt;}
.y24{bottom:412.039062pt;}
.y118{bottom:415.052413pt;}
.y86{bottom:415.517906pt;}
.yad{bottom:417.253586pt;}
.y145{bottom:417.439450pt;}
.y4b{bottom:423.348306pt;}
.y23{bottom:425.837888pt;}
.y117{bottom:429.617839pt;}
.y144{bottom:429.972010pt;}
.y85{bottom:430.083333pt;}
.yac{bottom:431.819013pt;}
.ye5{bottom:432.173173pt;}
.y4a{bottom:437.913733pt;}
.y143{bottom:439.171223pt;}
.y22{bottom:439.636715pt;}
.y116{bottom:444.183266pt;}
.yab{bottom:446.384439pt;}
.ye4{bottom:446.738613pt;}
.y84{bottom:450.126296pt;}
.y142{bottom:451.703770pt;}
.y49{bottom:452.479173pt;}
.y21{bottom:453.435542pt;}
.y115{bottom:458.748693pt;}
.y141{bottom:460.902997pt;}
.yaa{bottom:460.949866pt;}
.ye3{bottom:461.304039pt;}
.y48{bottom:467.044599pt;}
.y20{bottom:467.234368pt;}
.y140{bottom:470.102210pt;}
.y114{bottom:473.314133pt;}
.ya9{bottom:475.515306pt;}
.ye2{bottom:475.869466pt;}
.y13f{bottom:479.301437pt;}
.y1f{bottom:481.033208pt;}
.y83{bottom:481.458337pt;}
.y47{bottom:481.610026pt;}
.ya8{bottom:490.080733pt;}
.ye1{bottom:490.434893pt;}
.y13e{bottom:491.833983pt;}
.y1e{bottom:494.832035pt;}
.y113{bottom:495.879559pt;}
.y46{bottom:496.175453pt;}
.y13d{bottom:501.033197pt;}
.ya7{bottom:504.646159pt;}
.ye0{bottom:505.000322pt;}
.y1d{bottom:508.630862pt;}
.y112{bottom:510.444986pt;}
.y45{bottom:510.740879pt;}
.y82{bottom:512.646159pt;}
.y13c{bottom:513.565757pt;}
.ya6{bottom:519.211586pt;}
.y13b{bottom:522.764970pt;}
.y1c{bottom:522.862301pt;}
.y111{bottom:525.010413pt;}
.y44{bottom:525.306319pt;}
.y81{bottom:527.211586pt;}
.ydf{bottom:527.621426pt;}
.ya5{bottom:533.777013pt;}
.y13a{bottom:535.297530pt;}
.y1b{bottom:538.960941pt;}
.y110{bottom:539.575853pt;}
.y80{bottom:541.777013pt;}
.yde{bottom:542.186853pt;}
.y139{bottom:544.496743pt;}
.y43{bottom:547.871746pt;}
.ya4{bottom:548.342453pt;}
.y10f{bottom:554.141279pt;}
.y1a{bottom:555.059568pt;}
.y7f{bottom:556.342453pt;}
.ydd{bottom:556.752279pt;}
.y138{bottom:557.029303pt;}
.y42{bottom:562.437173pt;}
.ya3{bottom:562.907879pt;}
.y137{bottom:566.228517pt;}
.y10e{bottom:568.706706pt;}
.y7e{bottom:570.907879pt;}
.y19{bottom:571.158208pt;}
.ydc{bottom:571.317706pt;}
.y136{bottom:575.427730pt;}
.y41{bottom:577.002599pt;}
.ya2{bottom:577.473306pt;}
.y10d{bottom:583.272133pt;}
.y135{bottom:584.626957pt;}
.y7d{bottom:585.473306pt;}
.ydb{bottom:585.883133pt;}
.y18{bottom:587.256834pt;}
.y40{bottom:591.568039pt;}
.y134{bottom:597.159503pt;}
.y10c{bottom:597.837559pt;}
.y7c{bottom:600.038733pt;}
.yda{bottom:600.448573pt;}
.y17{bottom:603.355474pt;}
.y3f{bottom:606.133466pt;}
.y133{bottom:606.358730pt;}
.y10b{bottom:612.402999pt;}
.y7b{bottom:614.604173pt;}
.yd9{bottom:615.014002pt;}
.y132{bottom:618.891277pt;}
.y16{bottom:619.454101pt;}
.y3e{bottom:620.698893pt;}
.y10a{bottom:626.968426pt;}
.y131{bottom:628.090490pt;}
.y7a{bottom:629.169599pt;}
.y3d{bottom:635.264319pt;}
.y15{bottom:635.552741pt;}
.y130{bottom:637.289717pt;}
.yd8{bottom:637.635093pt;}
.y109{bottom:641.533853pt;}
.y79{bottom:643.735026pt;}
.y12f{bottom:649.822263pt;}
.y3c{bottom:649.829759pt;}
.y14{bottom:651.651367pt;}
.yd7{bottom:652.200519pt;}
.y108{bottom:656.099279pt;}
.y78{bottom:658.300453pt;}
.y12e{bottom:659.021490pt;}
.y3b{bottom:664.395186pt;}
.yd6{bottom:666.765946pt;}
.y13{bottom:667.317382pt;}
.y107{bottom:670.664719pt;}
.y77{bottom:672.865879pt;}
.y3a{bottom:678.960613pt;}
.y12{bottom:681.116208pt;}
.yd5{bottom:681.331386pt;}
.y106{bottom:685.230146pt;}
.y12d{bottom:685.374351pt;}
.y76{bottom:687.431319pt;}
.y39{bottom:693.526039pt;}
.y11{bottom:694.915035pt;}
.yd4{bottom:695.896813pt;}
.y105{bottom:699.795573pt;}
.y75{bottom:701.996746pt;}
.y38{bottom:708.091466pt;}
.y10{bottom:708.713862pt;}
.yd3{bottom:710.462239pt;}
.y104{bottom:714.360999pt;}
.y74{bottom:716.562173pt;}
.yd2{bottom:725.027666pt;}
.y73{bottom:731.127599pt;}
.y103{bottom:736.926426pt;}
.yf{bottom:738.801111pt;}
.ya1{bottom:745.693039pt;}
.yd1{bottom:747.593093pt;}
.y102{bottom:751.491866pt;}
.y72{bottom:753.693039pt;}
.ya{bottom:755.856119pt;}
.ya0{bottom:760.258466pt;}
.y176{bottom:760.901043pt;}
.yd0{bottom:762.158533pt;}
.y101{bottom:766.057293pt;}
.y71{bottom:768.258466pt;}
.ye{bottom:770.277341pt;}
.yb{bottom:771.188145pt;}
.y9{bottom:772.432936pt;}
.y9f{bottom:774.823893pt;}
.ycf{bottom:776.723959pt;}
.y175{bottom:778.412757pt;}
.y100{bottom:780.622719pt;}
.y70{bottom:782.823893pt;}
.yd{bottom:786.375981pt;}
.y174{bottom:787.611983pt;}
.y8{bottom:787.764976pt;}
.y9e{bottom:789.389319pt;}
.yce{bottom:791.289386pt;}
.yff{bottom:795.188146pt;}
.y173{bottom:796.811197pt;}
.y6f{bottom:797.389319pt;}
.yc{bottom:802.474607pt;}
.y7{bottom:803.097003pt;}
.y9d{bottom:803.954759pt;}
.ycd{bottom:805.854813pt;}
.y172{bottom:809.343743pt;}
.yfe{bottom:809.753586pt;}
.y6e{bottom:811.954759pt;}
.y9c{bottom:818.520186pt;}
.y171{bottom:818.542970pt;}
.y6{bottom:818.717448pt;}
.ycc{bottom:820.420253pt;}
.yfd{bottom:824.319010pt;}
.y6d{bottom:826.520182pt;}
.y170{bottom:831.075521pt;}
.y9b{bottom:833.085613pt;}
.ycb{bottom:834.985677pt;}
.yfc{bottom:838.884441pt;}
.y16f{bottom:840.274739pt;}
.y6c{bottom:841.085613pt;}
.y12c{bottom:847.651042pt;}
.y16e{bottom:849.473958pt;}
.yca{bottom:849.551107pt;}
.y6b{bottom:855.651042pt;}
.y5{bottom:855.908854pt;}
.yfb{bottom:858.927409pt;}
.y16d{bottom:862.006510pt;}
.yc9{bottom:864.116537pt;}
.y6a{bottom:870.216471pt;}
.y16c{bottom:871.205729pt;}
.yc8{bottom:878.681966pt;}
.y16b{bottom:883.738281pt;}
.y69{bottom:884.781901pt;}
.y16a{bottom:892.937499pt;}
.yc7{bottom:893.247395pt;}
.y4{bottom:895.772135pt;}
.y68{bottom:899.347331pt;}
.y169{bottom:905.470053pt;}
.yc6{bottom:907.812826pt;}
.y67{bottom:913.912761pt;}
.y168{bottom:914.669271pt;}
.yc5{bottom:922.378255pt;}
.y167{bottom:927.201823pt;}
.y66{bottom:928.478190pt;}
.y3{bottom:935.635418pt;}
.y166{bottom:936.401042pt;}
.yc4{bottom:936.943685pt;}
.y65{bottom:943.043619pt;}
.y165{bottom:945.600261pt;}
.yc3{bottom:951.509115pt;}
.y64{bottom:957.609050pt;}
.y164{bottom:958.132813pt;}
.y163{bottom:967.332031pt;}
.yc2{bottom:971.552083pt;}
.y63{bottom:972.174479pt;}
.y162{bottom:976.531250pt;}
.y1{bottom:984.000000pt;}
.hb{height:30.625001pt;}
.he{height:31.000001pt;}
.h9{height:32.507813pt;}
.h7{height:32.531250pt;}
.hc{height:36.145832pt;}
.h5{height:37.031249pt;}
.h6{height:37.057291pt;}
.h8{height:37.953125pt;}
.h2{height:38.281249pt;}
.hd{height:38.749999pt;}
.h4{height:42.109376pt;}
.h1{height:72.000000pt;}
.ha{height:96.000000pt;}
.h3{height:99.531254pt;}
.h0{height:1056.000000pt;}
.w2{width:186.000020pt;}
.w3{width:186.000041pt;}
.w1{width:221.519999pt;}
.w4{width:222.479980pt;}
.w5{width:407.519973pt;}
.w6{width:408.480027pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:12.000000pt;}
.xf{left:13.639526pt;}
.x13{left:16.938965pt;}
.x1b{left:31.000000pt;}
.xd{left:31.936456pt;}
.x24{left:36.000000pt;}
.x11{left:42.306763pt;}
.xe{left:43.293610pt;}
.xb{left:44.509904pt;}
.x10{left:45.534828pt;}
.x15{left:50.083008pt;}
.x1f{left:55.000000pt;}
.x6{left:57.359720pt;}
.x14{left:59.444824pt;}
.xc{left:63.053872pt;}
.x9{left:66.551844pt;}
.x20{left:67.878845pt;}
.x16{left:77.519999pt;}
.x19{left:78.519999pt;}
.x21{left:79.902161pt;}
.x23{left:83.519999pt;}
.x5{left:88.170275pt;}
.x4{left:93.276515pt;}
.x8{left:101.531695pt;}
.x3{left:102.464885pt;}
.x7{left:113.382540pt;}
.x1c{left:123.871157pt;}
.x2{left:124.844592pt;}
.x1e{left:135.727015pt;}
.x18{left:177.733218pt;}
.x1d{left:180.000000pt;}
.x22{left:196.901225pt;}
.xa{left:221.519999pt;}
.x17{left:227.519999pt;}
.x1{left:408.000009pt;}
.x12{left:593.520013pt;}
}




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