
    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_7ea63aa708b118f58c08d93e.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_5110873b6f3641624da9b7c8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.710938;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_29131bccaf74dad2a9833402.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.858398;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_5110873b6f3641624da9b7c8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.710938;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_7e2445e2574c94a67a114be2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.759766;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_05382f3952698ca0f1ebf4f4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.873535;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_2709f20194603394520d1158.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.677734;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_c654c8ad3f5d52214dd7148c.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_baec303cfdd7d31b7651b575.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_7b83cc374e1b10d1285704ce.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_47e7075901207f2f63c91bd7.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_baec303cfdd7d31b7651b575.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_793d2b777dbc15016c1a73d7.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.861816;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:ffe;src:url('chunks/assets/font_6dc4cfd091890b5f2dc066cf.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.861816;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:fff;src:url('chunks/assets/font_07cee1aa11984d1a95d09ce1.woff2')format("woff");}.fff{font-family:fff;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;}
.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);}
.v3{vertical-align:-12.084962px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:24.169922px;}
.v1{vertical-align:26.586909px;}
.ls0{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.000011px;}
.ls6{letter-spacing:114.794866px;}
.lsa{letter-spacing:132.105974px;}
.ls10{letter-spacing:149.183326px;}
.lsf{letter-spacing:182.752786px;}
.lsc{letter-spacing:185.770890px;}
.lse{letter-spacing:197.663086px;}
.lsb{letter-spacing:199.330079px;}
.ls5{letter-spacing:820.989451px;}
.ls4{letter-spacing:988.641631px;}
.ls2{letter-spacing:1492.089841px;}
.ls8{letter-spacing:1700.736931px;}
.ls3{letter-spacing:2101.554617px;}
.ls1{letter-spacing:2192.711612px;}
.ls7{letter-spacing:2264.441968px;}
.ls9{letter-spacing:2439.908479px;}
.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;}
}
.ws5{word-spacing:-18.336914px;}
.ws1{word-spacing:-17.091210px;}
.ws3{word-spacing:-14.920899px;}
.ws4{word-spacing:-8.952539px;}
.ws2{word-spacing:-0.066000px;}
.ws0{word-spacing:0.000000px;}
._4{margin-left:-13.084268px;}
._7{margin-left:-8.490234px;}
._b{margin-left:-6.957072px;}
._5{margin-left:-5.610960px;}
._6{margin-left:-3.827921px;}
._3{margin-left:-2.668384px;}
._1{margin-left:-1.308747px;}
._10{width:1.108620px;}
._a{width:2.912979px;}
._9{width:4.373126px;}
._c{width:5.385205px;}
._8{width:8.943944px;}
._d{width:13.204986px;}
._e{width:17.000630px;}
._f{width:18.922092px;}
._13{width:21.804430px;}
._12{width:22.935641px;}
._11{width:26.894366px;}
._2{width:48.888364px;}
._0{width:53.812310px;}
._17{width:75.806322px;}
._16{width:77.288956px;}
._14{width:80.856233px;}
._15{width:81.857019px;}
.fc8{color:rgb(46,117,181);}
.fc4{color:rgb(17,85,204);}
.fc3{color:rgb(79,189,177);}
.fc2{color:rgb(126,179,224);}
.fc7{color:rgb(82,82,82);}
.fc6{color:rgb(102,102,102);}
.fc5{color:rgb(68,84,106);}
.fc1{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fs8{font-size:39.600001px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:59.999999px;}
.fs0{font-size:66.000002px;}
.fs7{font-size:72.000000px;}
.fs3{font-size:75.599996px;}
.fs6{font-size:83.999997px;}
.fs4{font-size:108.000000px;}
.fs1{font-size:167.999994px;}
.y0{bottom:0.000000px;}
.y20{bottom:3.749909px;}
.y44{bottom:3.750000px;}
.yca{bottom:3.750733px;}
.y8b{bottom:4.124267px;}
.y73{bottom:4.124633px;}
.y36{bottom:4.124816px;}
.y2e{bottom:4.124824px;}
.y1e{bottom:4.124909px;}
.y9{bottom:4.124987px;}
.y4{bottom:4.124988px;}
.yf3{bottom:4.124999px;}
.y8{bottom:4.125001px;}
.y21{bottom:4.125091px;}
.y30{bottom:4.125183px;}
.y2a{bottom:4.125187px;}
.y45{bottom:4.125365px;}
.yc8{bottom:4.125732px;}
.y112{bottom:23.999992px;}
.y2d{bottom:24.266419px;}
.y7{bottom:24.266578px;}
.y35{bottom:24.266591px;}
.y29{bottom:24.266602px;}
.y24{bottom:26.195710px;}
.y26{bottom:26.195801px;}
.yfe{bottom:29.998536px;}
.y115{bottom:30.001465px;}
.y111{bottom:44.141602px;}
.y34{bottom:44.408006px;}
.y6{bottom:44.408202px;}
.y114{bottom:50.141602px;}
.y6e{bottom:56.849858px;}
.y1a{bottom:56.850038px;}
.y3f{bottom:56.850218px;}
.yf0{bottom:56.850578px;}
.y110{bottom:64.284667px;}
.y33{bottom:64.549616px;}
.yc6{bottom:76.990718px;}
.y51{bottom:76.991453px;}
.y3e{bottom:76.991633px;}
.y10f{bottom:84.424792px;}
.y32{bottom:84.691406px;}
.y10e{bottom:104.566402px;}
.y8a{bottom:124.015868px;}
.y70{bottom:124.016236px;}
.yf2{bottom:124.016600px;}
.y1c{bottom:124.016693px;}
.y41{bottom:124.016968px;}
.y10d{bottom:124.709467px;}
.yc5{bottom:135.000000px;}
.y127{bottom:137.941411px;}
.y89{bottom:139.365973px;}
.y10c{bottom:144.849607px;}
.y9a{bottom:149.722408px;}
.yd7{bottom:151.099363px;}
.yb7{bottom:156.909667px;}
.y126{bottom:158.083013px;}
.yef{bottom:158.337884px;}
.y10b{bottom:164.991202px;}
.y88{bottom:171.507195px;}
.y99{bottom:172.885252px;}
.yd6{bottom:173.255858px;}
.yb6{bottom:177.051268px;}
.yee{bottom:178.479488px;}
.y10a{bottom:185.134267px;}
.y125{bottom:191.726078px;}
.y98{bottom:196.047358px;}
.yed{bottom:198.619625px;}
.yb5{bottom:198.757320px;}
.y109{bottom:205.274407px;}
.y124{bottom:211.866211px;}
.yd5{bottom:213.758794px;}
.yec{bottom:218.762692px;}
.y97{bottom:219.210933px;}
.y2{bottom:223.139630px;}
.y108{bottom:225.416017px;}
.y123{bottom:232.007813px;}
.yeb{bottom:238.904293px;}
.yfc{bottom:241.579103px;}
.y96{bottom:242.373773px;}
.y107{bottom:245.559082px;}
.yd4{bottom:246.369143px;}
.yea{bottom:259.603275px;}
.y87{bottom:259.963620px;}
.y95{bottom:265.536616px;}
.y122{bottom:265.650878px;}
.y106{bottom:265.699207px;}
.yfb{bottom:273.720698px;}
.yd3{bottom:279.966803px;}
.y121{bottom:285.791011px;}
.y105{bottom:285.840817px;}
.y94{bottom:288.699458px;}
.y19{bottom:295.384823px;}
.y6d{bottom:295.519773px;}
.yd2{bottom:300.109872px;}
.y120{bottom:305.932613px;}
.y93{bottom:310.297123px;}
.yfa{bottom:316.804689px;}
.y6c{bottom:318.682613px;}
.yd1{bottom:320.250740px;}
.y104{bottom:323.983882px;}
.y92{bottom:333.996098px;}
.y18{bottom:337.597313px;}
.y11f{bottom:339.575678px;}
.yd0{bottom:340.391609px;}
.y6b{bottom:341.845091px;}
.y86{bottom:346.324958px;}
.yf9{bottom:355.327148px;}
.y11e{bottom:359.715826px;}
.y103{bottom:362.124022px;}
.y6a{bottom:365.008298px;}
.y91{bottom:367.593748px;}
.ycf{bottom:372.533940px;}
.y17{bottom:379.809638px;}
.y11d{bottom:379.857428px;}
.y85{bottom:381.487797px;}
.y102{bottom:382.265617px;}
.yf8{bottom:388.924808px;}
.yc4{bottom:395.387691px;}
.y90{bottom:399.735354px;}
.y101{bottom:402.408686px;}
.y84{bottom:404.650624px;}
.y69{bottom:406.171141px;}
.yf7{bottom:409.067877px;}
.y11c{bottom:413.500493px;}
.yc3{bottom:417.544188px;}
.y8f{bottom:419.877689px;}
.y16{bottom:422.022038px;}
.y100{bottom:422.548824px;}
.y83{bottom:427.813103px;}
.yf6{bottom:429.208012px;}
.y68{bottom:429.333983px;}
.y11b{bottom:433.640626px;}
.yc2{bottom:439.700681px;}
.yf5{bottom:449.349614px;}
.y82{bottom:450.976318px;}
.y8e{bottom:452.018550px;}
.y11a{bottom:453.782228px;}
.yc1{bottom:461.854978px;}
.y15{bottom:464.234528px;}
.y67{bottom:470.496828px;}
.y81{bottom:474.139162px;}
.yb4{bottom:474.779303px;}
.yf4{bottom:481.491211px;}
.yc0{bottom:484.011473px;}
.y119{bottom:487.425293px;}
.y14{bottom:490.751039px;}
.y66{bottom:493.659303px;}
.y80{bottom:497.301637px;}
.yb3{bottom:497.942141px;}
.y118{bottom:507.565426px;}
.ybf{bottom:514.224608px;}
.y65{bottom:516.822511px;}
.y7f{bottom:520.464843px;}
.yb2{bottom:521.104986px;}
.y117{bottom:527.707028px;}
.y64{bottom:539.985353px;}
.y13{bottom:542.020619px;}
.y7e{bottom:543.627683px;}
.yb1{bottom:544.267822px;}
.ybe{bottom:547.437008px;}
.y7d{bottom:566.790160px;}
.yb0{bottom:567.430664px;}
.y3d{bottom:567.450263px;}
.y63{bottom:570.197753px;}
.y116{bottom:570.791019px;}
.y8d{bottom:575.350342px;}
.ybd{bottom:581.034677px;}
.y7c{bottom:589.953368px;}
.yaf{bottom:590.592773px;}
.y12{bottom:593.290190px;}
.ybc{bottom:601.175543px;}
.y3c{bottom:602.591853px;}
.yff{bottom:604.300787px;}
.y62{bottom:610.700689px;}
.yae{bottom:613.756343px;}
.ybb{bottom:621.316415px;}
.y3b{bottom:622.733453px;}
.y7b{bottom:625.116213px;}
.yad{bottom:636.919197px;}
.yba{bottom:641.459480px;}
.y3a{bottom:642.875241px;}
.y61{bottom:643.312493px;}
.y7a{bottom:648.279053px;}
.yac{bottom:660.082024px;}
.y11{bottom:660.086237px;}
.yb9{bottom:661.600349px;}
.y39{bottom:663.016658px;}
.ye9{bottom:663.102533px;}
.y60{bottom:665.467887px;}
.y79{bottom:671.441530px;}
.yb8{bottom:681.741941px;}
.yab{bottom:683.244881px;}
.ye8{bottom:683.245608px;}
.y5f{bottom:687.624010px;}
.y78{bottom:694.604738px;}
.y38{bottom:698.158448px;}
.y10{bottom:701.791127px;}
.ye7{bottom:703.386479px;}
.yaa{bottom:706.407718px;}
.y5e{bottom:709.779777px;}
.y37{bottom:715.299863px;}
.ye6{bottom:723.527348px;}
.y77{bottom:728.202388px;}
.ya9{bottom:729.569824px;}
.y5d{bottom:731.935176px;}
.y31{bottom:736.566657px;}
.yf{bottom:743.665148px;}
.ye5{bottom:743.670413px;}
.ya8{bottom:752.733398px;}
.y5c{bottom:754.091304px;}
.y76{bottom:760.343992px;}
.ye4{bottom:765.824708px;}
.y50{bottom:775.137458px;}
.ya7{bottom:775.896243px;}
.y5b{bottom:776.247063px;}
.y75{bottom:780.485593px;}
.ye{bottom:785.877503px;}
.ye3{bottom:787.981198px;}
.y4f{bottom:795.278874px;}
.y5a{bottom:798.402457px;}
.ya6{bottom:799.059083px;}
.ye2{bottom:810.137693px;}
.y2f{bottom:817.132880px;}
.y4e{bottom:819.920289px;}
.y59{bottom:820.558587px;}
.y74{bottom:821.241943px;}
.ya5{bottom:822.221926px;}
.yd{bottom:828.089948px;}
.ye1{bottom:832.291988px;}
.y2c{bottom:838.399655px;}
.y58{bottom:842.714348px;}
.y4d{bottom:844.562259px;}
.ya4{bottom:845.384768px;}
.ye0{bottom:854.448492px;}
.y2b{bottom:858.541073px;}
.ya3{bottom:868.546868px;}
.y4c{bottom:869.203674px;}
.yc{bottom:870.302348px;}
.ydf{bottom:876.604990px;}
.y28{bottom:879.807677px;}
.y57{bottom:885.798340px;}
.ya2{bottom:891.710448px;}
.y4b{bottom:893.845089px;}
.yde{bottom:898.759281px;}
.y27{bottom:899.949278px;}
.yb{bottom:912.514733px;}
.ya1{bottom:914.873288px;}
.y4a{bottom:918.487059px;}
.ydd{bottom:920.915778px;}
.y25{bottom:921.753477px;}
.y12d{bottom:926.141603px;}
.y56{bottom:932.378543px;}
.ya0{bottom:938.036131px;}
.ydc{bottom:943.072271px;}
.y49{bottom:943.128474px;}
.y12c{bottom:946.284668px;}
.y55{bottom:952.520506px;}
.ya{bottom:954.727163px;}
.y9f{bottom:961.198973px;}
.yce{bottom:962.739988px;}
.y23{bottom:965.091058px;}
.ydb{bottom:965.226568px;}
.y48{bottom:967.769904px;}
.y1{bottom:970.743765px;}
.y54{bottom:972.662108px;}
.y113{bottom:976.708008px;}
.y12b{bottom:979.924808px;}
.y9e{bottom:984.361823px;}
.yda{bottom:987.383063px;}
.y5{bottom:990.546983px;}
.y47{bottom:992.411858px;}
.ycd{bottom:994.881593px;}
.yfd{bottom:996.851074px;}
.y12a{bottom:1000.066407px;}
.y9d{bottom:1007.523927px;}
.yd9{bottom:1009.539551px;}
.ycc{bottom:1015.022463px;}
.y53{bottom:1015.746094px;}
.y129{bottom:1020.209473px;}
.y9c{bottom:1030.687499px;}
.yd8{bottom:1031.693847px;}
.ycb{bottom:1035.165528px;}
.y46{bottom:1043.657593px;}
.y22{bottom:1043.657776px;}
.y3{bottom:1050.633408px;}
.y128{bottom:1053.849610px;}
.y52{bottom:1053.849976px;}
.y9b{bottom:1053.850342px;}
.y8c{bottom:1055.306397px;}
.yf1{bottom:1069.866211px;}
.y40{bottom:1069.866577px;}
.y1b{bottom:1069.866761px;}
.y6f{bottom:1069.866943px;}
.yc7{bottom:1090.007812px;}
.y42{bottom:1090.008178px;}
.y1d{bottom:1090.008453px;}
.y71{bottom:1090.008544px;}
.yc9{bottom:1171.447265px;}
.y43{bottom:1171.447632px;}
.y1f{bottom:1171.447906px;}
.y72{bottom:1171.447998px;}
.hc{height:18.310455px;}
.h1b{height:18.310547px;}
.h27{height:18.311279px;}
.h12{height:20.141602px;}
.h15{height:20.141785px;}
.h17{height:35.991211px;}
.h24{height:39.990233px;}
.h14{height:40.283021px;}
.h13{height:40.283203px;}
.h23{height:41.015624px;}
.hf{height:42.212312px;}
.h11{height:42.212403px;}
.hd{height:43.066405px;}
.h1c{height:43.989259px;}
.h6{height:44.891603px;}
.h20{height:45.117189px;}
.h10{height:45.890626px;}
.h5{height:46.921876px;}
.h2{height:47.373048px;}
.h1f{height:49.218750px;}
.h7{height:49.500001px;}
.h28{height:50.009766px;}
.h22{height:55.010738px;}
.h1e{height:58.406248px;}
.h4{height:60.086425px;}
.h2b{height:71.890137px;}
.he{height:71.982422px;}
.h2d{height:92.033203px;}
.hb{height:99.749909px;}
.h1a{height:99.750000px;}
.h26{height:99.750732px;}
.h16{height:100.708008px;}
.h8{height:116.812496px;}
.h1d{height:127.199700px;}
.h18{height:127.199895px;}
.h9{height:127.200075px;}
.h25{height:127.200435px;}
.h29{height:127.201170px;}
.h3{height:139.124988px;}
.h21{height:193.133057px;}
.ha{height:193.133239px;}
.h19{height:193.133423px;}
.h2a{height:193.133789px;}
.h1{height:292.256235px;}
.h2c{height:464.440425px;}
.h0{height:1263.000000px;}
.w7{width:57.375012px;}
.w9{width:84.374954px;}
.w3{width:153.000023px;}
.w5{width:202.500022px;}
.w2{width:296.999955px;}
.w6{width:517.499910px;}
.w8{width:563.624955px;}
.w4{width:569.249910px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x10{left:6.750000px;}
.x4{left:7.875000px;}
.x5{left:85.049996px;}
.xf{left:86.174995px;}
.x8{left:90.080700px;}
.x14{left:112.049996px;}
.x7{left:116.224427px;}
.xd{left:127.863092px;}
.x15{left:139.049996px;}
.x1c{left:144.675007px;}
.xb{left:151.875000px;}
.xc{left:238.050018px;}
.x3{left:252.000000px;}
.x12{left:259.424996px;}
.x11{left:289.800015px;}
.x2{left:297.675015px;}
.x13{left:331.133204px;}
.x9{left:337.831922px;}
.xe{left:366.845384px;}
.x6{left:391.118767px;}
.x1{left:446.456696px;}
.x17{left:568.519196px;}
.x18{left:570.769196px;}
.x1a{left:656.269196px;}
.x19{left:697.331662px;}
.x1d{left:709.424970px;}
.x1b{left:791.149687px;}
.xa{left:799.506502px;}
.x16{left:812.924996px;}
@media print{
.v3{vertical-align:-10.742188pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.484375pt;}
.v1{vertical-align:23.632808pt;}
.ls0{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.000010pt;}
.ls6{letter-spacing:102.039881pt;}
.lsa{letter-spacing:117.427532pt;}
.ls10{letter-spacing:132.607401pt;}
.lsf{letter-spacing:162.446921pt;}
.lsc{letter-spacing:165.129680pt;}
.lse{letter-spacing:175.700521pt;}
.lsb{letter-spacing:177.182292pt;}
.ls5{letter-spacing:729.768401pt;}
.ls4{letter-spacing:878.792561pt;}
.ls2{letter-spacing:1326.302081pt;}
.ls8{letter-spacing:1511.766161pt;}
.ls3{letter-spacing:1868.048549pt;}
.ls1{letter-spacing:1949.076989pt;}
.ls7{letter-spacing:2012.837305pt;}
.ls9{letter-spacing:2168.807537pt;}
.ws5{word-spacing:-16.299479pt;}
.ws1{word-spacing:-15.192187pt;}
.ws3{word-spacing:-13.263021pt;}
.ws4{word-spacing:-7.957813pt;}
.ws2{word-spacing:-0.058667pt;}
.ws0{word-spacing:0.000000pt;}
._4{margin-left:-11.630461pt;}
._7{margin-left:-7.546875pt;}
._b{margin-left:-6.184064pt;}
._5{margin-left:-4.987520pt;}
._6{margin-left:-3.402597pt;}
._3{margin-left:-2.371897pt;}
._1{margin-left:-1.163330pt;}
._10{width:0.985440pt;}
._a{width:2.589314pt;}
._9{width:3.887223pt;}
._c{width:4.786849pt;}
._8{width:7.950173pt;}
._d{width:11.737765pt;}
._e{width:15.111671pt;}
._f{width:16.819637pt;}
._13{width:19.381716pt;}
._12{width:20.387236pt;}
._11{width:23.906104pt;}
._2{width:43.456324pt;}
._0{width:47.833164pt;}
._17{width:67.383397pt;}
._16{width:68.701294pt;}
._14{width:71.872207pt;}
._15{width:72.761795pt;}
.fs9{font-size:32.000000pt;}
.fs8{font-size:35.200001pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.333332pt;}
.fs0{font-size:58.666668pt;}
.fs7{font-size:64.000000pt;}
.fs3{font-size:67.199996pt;}
.fs6{font-size:74.666664pt;}
.fs4{font-size:96.000000pt;}
.fs1{font-size:149.333328pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:3.333252pt;}
.y44{bottom:3.333334pt;}
.yca{bottom:3.333985pt;}
.y8b{bottom:3.666015pt;}
.y73{bottom:3.666341pt;}
.y36{bottom:3.666503pt;}
.y2e{bottom:3.666510pt;}
.y1e{bottom:3.666585pt;}
.y9{bottom:3.666655pt;}
.y4{bottom:3.666656pt;}
.yf3{bottom:3.666666pt;}
.y8{bottom:3.666667pt;}
.y21{bottom:3.666747pt;}
.y30{bottom:3.666829pt;}
.y2a{bottom:3.666832pt;}
.y45{bottom:3.666991pt;}
.yc8{bottom:3.667317pt;}
.y112{bottom:21.333326pt;}
.y2d{bottom:21.570150pt;}
.y7{bottom:21.570291pt;}
.y35{bottom:21.570303pt;}
.y29{bottom:21.570312pt;}
.y24{bottom:23.285075pt;}
.y26{bottom:23.285156pt;}
.yfe{bottom:26.665365pt;}
.y115{bottom:26.667968pt;}
.y111{bottom:39.236979pt;}
.y34{bottom:39.473783pt;}
.y6{bottom:39.473958pt;}
.y114{bottom:44.570313pt;}
.y6e{bottom:50.533207pt;}
.y1a{bottom:50.533367pt;}
.y3f{bottom:50.533527pt;}
.yf0{bottom:50.533847pt;}
.y110{bottom:57.141926pt;}
.y33{bottom:57.377436pt;}
.yc6{bottom:68.436194pt;}
.y51{bottom:68.436847pt;}
.y3e{bottom:68.437007pt;}
.y10f{bottom:75.044259pt;}
.y32{bottom:75.281250pt;}
.y10e{bottom:92.947912pt;}
.y8a{bottom:110.236327pt;}
.y70{bottom:110.236654pt;}
.yf2{bottom:110.236978pt;}
.y1c{bottom:110.237061pt;}
.y41{bottom:110.237305pt;}
.y10d{bottom:110.852859pt;}
.yc5{bottom:120.000000pt;}
.y127{bottom:122.614588pt;}
.y89{bottom:123.880865pt;}
.y10c{bottom:128.755206pt;}
.y9a{bottom:133.086585pt;}
.yd7{bottom:134.310545pt;}
.yb7{bottom:139.475259pt;}
.y126{bottom:140.518234pt;}
.yef{bottom:140.744786pt;}
.y10b{bottom:146.658846pt;}
.y88{bottom:152.450840pt;}
.y99{bottom:153.675780pt;}
.yd6{bottom:154.005207pt;}
.yb6{bottom:157.378905pt;}
.yee{bottom:158.648434pt;}
.y10a{bottom:164.563792pt;}
.y125{bottom:170.423180pt;}
.y98{bottom:174.264319pt;}
.yed{bottom:176.550778pt;}
.yb5{bottom:176.673173pt;}
.y109{bottom:182.466139pt;}
.y124{bottom:188.325521pt;}
.yd5{bottom:190.007817pt;}
.yec{bottom:194.455726pt;}
.y97{bottom:194.854163pt;}
.y2{bottom:198.346338pt;}
.y108{bottom:200.369792pt;}
.y123{bottom:206.229167pt;}
.yeb{bottom:212.359372pt;}
.yfc{bottom:214.736980pt;}
.y96{bottom:215.443354pt;}
.y107{bottom:218.274739pt;}
.yd4{bottom:218.994794pt;}
.yea{bottom:230.758467pt;}
.y87{bottom:231.078773pt;}
.y95{bottom:236.032548pt;}
.y122{bottom:236.134114pt;}
.y106{bottom:236.177072pt;}
.yfb{bottom:243.307287pt;}
.yd3{bottom:248.859381pt;}
.y121{bottom:254.036455pt;}
.y105{bottom:254.080726pt;}
.y94{bottom:256.621741pt;}
.y19{bottom:262.564287pt;}
.y6d{bottom:262.684243pt;}
.yd2{bottom:266.764331pt;}
.y120{bottom:271.940101pt;}
.y93{bottom:275.819665pt;}
.yfa{bottom:281.604168pt;}
.y6c{bottom:283.273434pt;}
.yd1{bottom:284.667325pt;}
.y104{bottom:287.985672pt;}
.y92{bottom:296.885420pt;}
.y18{bottom:300.086500pt;}
.y11f{bottom:301.845047pt;}
.yd0{bottom:302.570319pt;}
.y6b{bottom:303.862303pt;}
.y86{bottom:307.844407pt;}
.yf9{bottom:315.846354pt;}
.y11e{bottom:319.747401pt;}
.y103{bottom:321.888019pt;}
.y6a{bottom:324.451821pt;}
.y91{bottom:326.749999pt;}
.ycf{bottom:331.141280pt;}
.y17{bottom:337.608567pt;}
.y11d{bottom:337.651047pt;}
.y85{bottom:339.100264pt;}
.y102{bottom:339.791659pt;}
.yf8{bottom:345.710941pt;}
.yc4{bottom:351.455725pt;}
.y90{bottom:355.320315pt;}
.y101{bottom:357.696610pt;}
.y84{bottom:359.689444pt;}
.y69{bottom:361.041015pt;}
.yf7{bottom:363.615891pt;}
.y11c{bottom:367.555994pt;}
.yc3{bottom:371.150389pt;}
.y8f{bottom:373.224612pt;}
.y16{bottom:375.130700pt;}
.y100{bottom:375.598954pt;}
.y83{bottom:380.278314pt;}
.yf6{bottom:381.518233pt;}
.y68{bottom:381.630207pt;}
.y11b{bottom:385.458334pt;}
.yc2{bottom:390.845049pt;}
.yf5{bottom:399.421879pt;}
.y82{bottom:400.867838pt;}
.y8e{bottom:401.794267pt;}
.y11a{bottom:403.361980pt;}
.yc1{bottom:410.537758pt;}
.y15{bottom:412.652914pt;}
.y67{bottom:418.219403pt;}
.y81{bottom:421.457033pt;}
.yb4{bottom:422.026047pt;}
.yf4{bottom:427.992188pt;}
.yc0{bottom:430.232420pt;}
.y119{bottom:433.266927pt;}
.y14{bottom:436.223146pt;}
.y66{bottom:438.808269pt;}
.y80{bottom:442.045900pt;}
.yb3{bottom:442.615237pt;}
.y118{bottom:451.169268pt;}
.ybf{bottom:457.088540pt;}
.y65{bottom:459.397788pt;}
.y7f{bottom:462.635416pt;}
.yb2{bottom:463.204432pt;}
.y117{bottom:469.072914pt;}
.y64{bottom:479.986981pt;}
.y13{bottom:481.796106pt;}
.y7e{bottom:483.224607pt;}
.yb1{bottom:483.793620pt;}
.ybe{bottom:486.610674pt;}
.y7d{bottom:503.813476pt;}
.yb0{bottom:504.382813pt;}
.y3d{bottom:504.400234pt;}
.y63{bottom:506.842447pt;}
.y116{bottom:507.369794pt;}
.y8d{bottom:511.422527pt;}
.ybd{bottom:516.475269pt;}
.y7c{bottom:524.402994pt;}
.yaf{bottom:524.971354pt;}
.y12{bottom:527.369058pt;}
.ybc{bottom:534.378261pt;}
.y3c{bottom:535.637203pt;}
.yff{bottom:537.156255pt;}
.y62{bottom:542.845057pt;}
.yae{bottom:545.561194pt;}
.ybb{bottom:552.281258pt;}
.y3b{bottom:553.540848pt;}
.y7b{bottom:555.658856pt;}
.yad{bottom:566.150397pt;}
.yba{bottom:570.186205pt;}
.y3a{bottom:571.444658pt;}
.y61{bottom:571.833327pt;}
.y7a{bottom:576.248047pt;}
.yac{bottom:586.739577pt;}
.y11{bottom:586.743322pt;}
.yb9{bottom:588.089199pt;}
.y39{bottom:589.348140pt;}
.ye9{bottom:589.424474pt;}
.y60{bottom:591.527010pt;}
.y79{bottom:596.836916pt;}
.yb8{bottom:605.992836pt;}
.yab{bottom:607.328783pt;}
.ye8{bottom:607.329429pt;}
.y5f{bottom:611.221342pt;}
.y78{bottom:617.426434pt;}
.y38{bottom:620.585287pt;}
.y10{bottom:623.814335pt;}
.ye7{bottom:625.232426pt;}
.yaa{bottom:627.917971pt;}
.y5e{bottom:630.915358pt;}
.y37{bottom:635.822101pt;}
.ye6{bottom:643.135420pt;}
.y77{bottom:647.291012pt;}
.ya9{bottom:648.506510pt;}
.y5d{bottom:650.609045pt;}
.y31{bottom:654.725917pt;}
.yf{bottom:661.035687pt;}
.ye5{bottom:661.040367pt;}
.ya8{bottom:669.096354pt;}
.y5c{bottom:670.303382pt;}
.y76{bottom:675.861326pt;}
.ye4{bottom:680.733074pt;}
.y50{bottom:689.011074pt;}
.ya7{bottom:689.685549pt;}
.y5b{bottom:689.997389pt;}
.y75{bottom:693.764972pt;}
.ye{bottom:698.557781pt;}
.ye3{bottom:700.427732pt;}
.y4f{bottom:706.914555pt;}
.y5a{bottom:709.691072pt;}
.ya6{bottom:710.274740pt;}
.ye2{bottom:720.122394pt;}
.y2f{bottom:726.340338pt;}
.y4e{bottom:728.818035pt;}
.y59{bottom:729.385411pt;}
.y74{bottom:729.992839pt;}
.ya5{bottom:730.863934pt;}
.yd{bottom:736.079954pt;}
.ye1{bottom:739.815100pt;}
.y2c{bottom:745.244137pt;}
.y58{bottom:749.079420pt;}
.y4d{bottom:750.722008pt;}
.ya4{bottom:751.453127pt;}
.ye0{bottom:759.509771pt;}
.y2b{bottom:763.147621pt;}
.ya3{bottom:772.041661pt;}
.y4c{bottom:772.625488pt;}
.yc{bottom:773.602087pt;}
.ydf{bottom:779.204436pt;}
.y28{bottom:782.051268pt;}
.y57{bottom:787.376302pt;}
.ya2{bottom:792.631509pt;}
.y4b{bottom:794.528968pt;}
.yde{bottom:798.897139pt;}
.y27{bottom:799.954914pt;}
.yb{bottom:811.124207pt;}
.ya1{bottom:813.220700pt;}
.y4a{bottom:816.432941pt;}
.ydd{bottom:818.591803pt;}
.y25{bottom:819.336424pt;}
.y12d{bottom:823.236980pt;}
.y56{bottom:828.780927pt;}
.ya0{bottom:833.809894pt;}
.ydc{bottom:838.286463pt;}
.y49{bottom:838.336421pt;}
.y12c{bottom:841.141927pt;}
.y55{bottom:846.684894pt;}
.ya{bottom:848.646367pt;}
.y9f{bottom:854.399087pt;}
.yce{bottom:855.768879pt;}
.y23{bottom:857.858719pt;}
.ydb{bottom:857.979172pt;}
.y48{bottom:860.239915pt;}
.y1{bottom:862.883347pt;}
.y54{bottom:864.588540pt;}
.y113{bottom:868.184896pt;}
.y12b{bottom:871.044274pt;}
.y9e{bottom:874.988287pt;}
.yda{bottom:877.673834pt;}
.y5{bottom:880.486207pt;}
.y47{bottom:882.143874pt;}
.ycd{bottom:884.339193pt;}
.yfd{bottom:886.089844pt;}
.y12a{bottom:888.947917pt;}
.y9d{bottom:895.576824pt;}
.yd9{bottom:897.368490pt;}
.ycc{bottom:902.242189pt;}
.y53{bottom:902.885417pt;}
.y129{bottom:906.852864pt;}
.y9c{bottom:916.166666pt;}
.yd8{bottom:917.061197pt;}
.ycb{bottom:920.147136pt;}
.y46{bottom:927.695638pt;}
.y22{bottom:927.695801pt;}
.y3{bottom:933.896363pt;}
.y128{bottom:936.755208pt;}
.y52{bottom:936.755534pt;}
.y9b{bottom:936.755859pt;}
.y8c{bottom:938.050131pt;}
.yf1{bottom:950.992188pt;}
.y40{bottom:950.992513pt;}
.y1b{bottom:950.992676pt;}
.y6f{bottom:950.992839pt;}
.yc7{bottom:968.895833pt;}
.y42{bottom:968.896159pt;}
.y1d{bottom:968.896403pt;}
.y71{bottom:968.896484pt;}
.yc9{bottom:1041.286458pt;}
.y43{bottom:1041.286784pt;}
.y1f{bottom:1041.287028pt;}
.y72{bottom:1041.287109pt;}
.hc{height:16.275960pt;}
.h1b{height:16.276042pt;}
.h27{height:16.276693pt;}
.h12{height:17.903646pt;}
.h15{height:17.903809pt;}
.h17{height:31.992188pt;}
.h24{height:35.546874pt;}
.h14{height:35.807129pt;}
.h13{height:35.807292pt;}
.h23{height:36.458332pt;}
.hf{height:37.522055pt;}
.h11{height:37.522136pt;}
.hd{height:38.281249pt;}
.h1c{height:39.101563pt;}
.h6{height:39.903647pt;}
.h20{height:40.104168pt;}
.h10{height:40.791668pt;}
.h5{height:41.708334pt;}
.h2{height:42.109376pt;}
.h1f{height:43.750000pt;}
.h7{height:44.000001pt;}
.h28{height:44.453125pt;}
.h22{height:48.898434pt;}
.h1e{height:51.916665pt;}
.h4{height:53.410156pt;}
.h2b{height:63.902344pt;}
.he{height:63.984375pt;}
.h2d{height:81.807292pt;}
.hb{height:88.666585pt;}
.h1a{height:88.666667pt;}
.h26{height:88.667317pt;}
.h16{height:89.518229pt;}
.h8{height:103.833330pt;}
.h1d{height:113.066400pt;}
.h18{height:113.066573pt;}
.h9{height:113.066733pt;}
.h25{height:113.067053pt;}
.h29{height:113.067707pt;}
.h3{height:123.666656pt;}
.h21{height:171.673828pt;}
.ha{height:171.673991pt;}
.h19{height:171.674153pt;}
.h2a{height:171.674479pt;}
.h1{height:259.783320pt;}
.h2c{height:412.835933pt;}
.h0{height:1122.666667pt;}
.w7{width:51.000011pt;}
.w9{width:74.999959pt;}
.w3{width:136.000020pt;}
.w5{width:180.000020pt;}
.w2{width:263.999960pt;}
.w6{width:459.999920pt;}
.w8{width:500.999960pt;}
.w4{width:505.999920pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x10{left:6.000000pt;}
.x4{left:7.000000pt;}
.x5{left:75.599996pt;}
.xf{left:76.599996pt;}
.x8{left:80.071733pt;}
.x14{left:99.599996pt;}
.x7{left:103.310602pt;}
.xd{left:113.656082pt;}
.x15{left:123.599996pt;}
.x1c{left:128.600007pt;}
.xb{left:135.000000pt;}
.xc{left:211.600016pt;}
.x3{left:224.000000pt;}
.x12{left:230.599996pt;}
.x11{left:257.600013pt;}
.x2{left:264.600013pt;}
.x13{left:294.340626pt;}
.x9{left:300.295042pt;}
.xe{left:326.084786pt;}
.x6{left:347.661126pt;}
.x1{left:396.850396pt;}
.x17{left:505.350396pt;}
.x18{left:507.350396pt;}
.x1a{left:583.350396pt;}
.x19{left:619.850366pt;}
.x1d{left:630.599973pt;}
.x1b{left:703.244166pt;}
.xa{left:710.672446pt;}
.x16{left:722.599996pt;}
}




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