
    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_a93c189024b7861eb4adbd65.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.975586;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_837b66ab22b26d9580b1d51d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.731445;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_f423bb19ad8b48c9627d67f3.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_2c5031b7af7d5c256d35489f.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_315bce7ae022fae412b4061f.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls29{letter-spacing:-0.189000px;}
.ls10{letter-spacing:-0.126000px;}
.ls11{letter-spacing:-0.063000px;}
.lsf{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.027600px;}
.ls15{letter-spacing:0.063000px;}
.ls0{letter-spacing:0.083880px;}
.ls8{letter-spacing:0.126000px;}
.ls7{letter-spacing:0.131760px;}
.ls21{letter-spacing:0.135000px;}
.ls9{letter-spacing:0.162000px;}
.lse{letter-spacing:0.189000px;}
.lsb{letter-spacing:0.207900px;}
.lsa{letter-spacing:0.214200px;}
.ls28{letter-spacing:0.239400px;}
.ls19{letter-spacing:0.315000px;}
.ls27{letter-spacing:0.326400px;}
.lsd{letter-spacing:33.075000px;}
.ls17{letter-spacing:33.453000px;}
.ls1{letter-spacing:42.946560px;}
.ls1e{letter-spacing:47.124000px;}
.ls1d{letter-spacing:47.502000px;}
.ls1b{letter-spacing:52.290000px;}
.ls1a{letter-spacing:52.353000px;}
.ls1c{letter-spacing:54.243000px;}
.ls20{letter-spacing:56.826000px;}
.ls18{letter-spacing:59.661000px;}
.ls1f{letter-spacing:59.724000px;}
.lsc{letter-spacing:70.497000px;}
.ls24{letter-spacing:120.043800px;}
.ls3{letter-spacing:137.718000px;}
.ls22{letter-spacing:179.604000px;}
.ls13{letter-spacing:223.524600px;}
.ls16{letter-spacing:255.906000px;}
.ls6{letter-spacing:262.196400px;}
.ls5{letter-spacing:275.705400px;}
.ls2{letter-spacing:371.491200px;}
.ls23{letter-spacing:397.205400px;}
.ls4{letter-spacing:547.865400px;}
.ls12{letter-spacing:642.537000px;}
.ls26{letter-spacing:686.502000px;}
.ls14{letter-spacing:1419.117000px;}
.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;}
}
.ws0{word-spacing:-14.238000px;}
.ws1{word-spacing:-14.175000px;}
.wsd{word-spacing:-14.112000px;}
.wse{word-spacing:-14.049000px;}
.wsf{word-spacing:-0.315000px;}
.ws4{word-spacing:-0.251640px;}
.ws9{word-spacing:-0.197640px;}
.ws6{word-spacing:-0.189000px;}
.ws7{word-spacing:-0.126000px;}
.ws2{word-spacing:0.000000px;}
.ws8{word-spacing:0.063000px;}
.ws3{word-spacing:0.083880px;}
.wsc{word-spacing:0.126000px;}
.ws5{word-spacing:0.189000px;}
.wsb{word-spacing:0.252000px;}
.wsa{word-spacing:0.315000px;}
._43{margin-left:-84.987000px;}
._9c{margin-left:-74.403000px;}
._9e{margin-left:-71.085768px;}
._9d{margin-left:-61.495608px;}
._9b{margin-left:-48.228816px;}
._44{margin-left:-47.187000px;}
._9a{margin-left:-15.427392px;}
._42{margin-left:-14.420448px;}
._45{margin-left:-13.230000px;}
._3e{margin-left:-1.014552px;}
._3{width:1.174320px;}
._4{width:20.970000px;}
._7c{width:29.826360px;}
._2{width:38.500920px;}
._0{width:44.540280px;}
._7{width:46.134000px;}
._5d{width:47.514600px;}
._1{width:51.082920px;}
._6{width:54.354240px;}
._87{width:61.532100px;}
._75{width:63.693000px;}
._5{width:71.298000px;}
._41{width:76.917960px;}
._73{width:79.197300px;}
._78{width:84.224700px;}
._19{width:85.667400px;}
._25{width:88.578000px;}
._a0{width:89.976600px;}
._7f{width:91.772100px;}
._40{width:93.945600px;}
._3f{width:95.203800px;}
._a{width:96.453000px;}
._55{width:99.754200px;}
._8c{width:102.570300px;}
._1e{width:104.649600px;}
._ac{width:109.412100px;}
._51{width:111.579300px;}
._30{width:114.452100px;}
._ba{width:119.158200px;}
._2d{width:120.210300px;}
._20{width:122.012100px;}
._68{width:124.532100px;}
._37{width:136.778100px;}
._5b{width:139.349700px;}
._91{width:144.815640px;}
._8d{width:147.237300px;}
._57{width:150.809400px;}
._a2{width:152.277300px;}
._5a{width:153.694800px;}
._a7{width:156.573900px;}
._8{width:169.917300px;}
._b8{width:177.483600px;}
._64{width:179.263980px;}
._3b{width:183.594600px;}
._c{width:187.576200px;}
._ab{width:192.196260px;}
._53{width:193.680900px;}
._b6{width:195.098400px;}
._23{width:197.284500px;}
._99{width:201.259800px;}
._b5{width:202.286700px;}
._26{width:205.197300px;}
._65{width:207.742500px;}
._49{width:210.249900px;}
._7d{width:212.398200px;}
._4f{width:213.979800px;}
._f{width:215.636400px;}
._22{width:221.041800px;}
._35{width:222.486660px;}
._92{width:223.605900px;}
._52{width:224.979300px;}
._11{width:227.159100px;}
._94{width:230.756400px;}
._b{width:232.577100px;}
._46{width:233.969400px;}
._33{width:235.084500px;}
._84{width:236.873700px;}
._36{width:241.901100px;}
._2c{width:248.012100px;}
._1a{width:249.473700px;}
._71{width:255.244500px;}
._1c{width:259.912800px;}
._b0{width:265.368600px;}
._a6{width:268.203600px;}
._90{width:275.757300px;}
._66{width:280.104300px;}
._54{width:285.478200px;}
._6b{width:287.979300px;}
._98{width:290.574900px;}
._6e{width:301.681800px;}
._14{width:304.227000px;}
._ad{width:309.210300px;}
._9f{width:312.530400px;}
._56{width:316.083600px;}
._47{width:317.532600px;}
._79{width:319.347000px;}
._58{width:325.143000px;}
._3c{width:327.285000px;}
._29{width:331.254000px;}
._4b{width:341.649000px;}
._6f{width:344.169000px;}
._21{width:346.833900px;}
._31{width:356.346900px;}
._80{width:357.940800px;}
._6a{width:359.289000px;}
._5e{width:362.149800px;}
._a1{width:365.022000px;}
._77{width:366.156000px;}
._85{width:368.613000px;}
._18{width:370.818000px;}
._74{width:373.772700px;}
._b1{width:378.378000px;}
._4c{width:380.898000px;}
._70{width:385.938000px;}
._63{width:394.506000px;}
._ae{width:396.396000px;}
._8f{width:399.357000px;}
._34{width:403.697400px;}
._b4{width:409.752000px;}
._a5{width:414.855000px;}
._bc{width:427.014000px;}
._81{width:429.558600px;}
._96{width:432.495000px;}
._8a{width:438.858000px;}
._a8{width:443.910600px;}
._3a{width:446.040000px;}
._39{width:451.143000px;}
._67{width:454.759200px;}
._38{width:467.334000px;}
._17{width:475.587000px;}
._5c{width:478.201500px;}
._69{width:479.934000px;}
._13{width:482.706000px;}
._4a{width:487.494000px;}
._e{width:488.943000px;}
._86{width:490.348800px;}
._1d{width:497.574000px;}
._a3{width:502.229700px;}
._2f{width:538.272000px;}
._15{width:543.312000px;}
._50{width:548.667000px;}
._2e{width:553.077000px;}
._8b{width:566.722800px;}
._60{width:567.819000px;}
._6c{width:570.339000px;}
._7a{width:582.674400px;}
._4d{width:584.325000px;}
._a4{width:585.396000px;}
._6d{width:591.399900px;}
._89{width:595.539000px;}
._1f{width:606.284400px;}
._b9{width:616.392000px;}
._2a{width:624.708000px;}
._9{width:626.528700px;}
._3d{width:630.144900px;}
._62{width:637.308000px;}
._97{width:639.481500px;}
._1b{width:640.527300px;}
._b2{width:655.137000px;}
._d{width:685.881000px;}
._b3{width:689.031000px;}
._72{width:697.378500px;}
._af{width:730.233000px;}
._76{width:735.651000px;}
._b7{width:762.186600px;}
._59{width:765.149760px;}
._5f{width:766.899000px;}
._4e{width:774.459000px;}
._95{width:801.876600px;}
._bb{width:815.472000px;}
._16{width:832.814400px;}
._48{width:873.349800px;}
._88{width:883.303200px;}
._a9{width:886.465080px;}
._10{width:906.040200px;}
._82{width:924.273000px;}
._32{width:948.843000px;}
._27{width:974.477700px;}
._7b{width:984.501000px;}
._61{width:987.021000px;}
._93{width:1025.136000px;}
._24{width:1030.459500px;}
._83{width:1038.492000px;}
._2b{width:1065.834000px;}
._7e{width:1084.519800px;}
._aa{width:1115.691000px;}
._8e{width:1142.687700px;}
._12{width:1244.250000px;}
._28{width:1262.457000px;}
.fc6{color:rgb(17,85,204);}
.fc5{color:rgb(33,37,41);}
.fc3{color:rgb(0,0,255);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(33,86,139);}
.fc0{color:transparent;}
.fs2{font-size:63.000000px;}
.fs0{font-size:65.880000px;}
.fs1{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y8{bottom:4.230000px;}
.y4d{bottom:16.470000px;}
.y5c{bottom:23.400000px;}
.y29{bottom:23.490000px;}
.ya{bottom:42.660000px;}
.y10{bottom:42.750000px;}
.y3{bottom:57.504870px;}
.y2b{bottom:61.830000px;}
.y83{bottom:61.920000px;}
.y35{bottom:76.494750px;}
.y2{bottom:76.494780px;}
.y1c{bottom:81.090000px;}
.y41{bottom:81.180000px;}
.y47{bottom:100.350000px;}
.y14{bottom:119.520000px;}
.y1d{bottom:186.660000px;}
.y1e{bottom:191.070000px;}
.y60{bottom:196.560000px;}
.y27{bottom:196.623000px;}
.y5d{bottom:202.950000px;}
.y26{bottom:203.647500px;}
.y2d{bottom:210.150000px;}
.y64{bottom:215.730000px;}
.y25{bottom:225.792000px;}
.y80{bottom:229.410000px;}
.y98{bottom:237.972960px;}
.y53{bottom:244.260000px;}
.y24{bottom:247.936500px;}
.y63{bottom:257.940000px;}
.y2a{bottom:260.910000px;}
.y97{bottom:261.195660px;}
.y23{bottom:269.986500px;}
.y7e{bottom:281.333250px;}
.y34{bottom:284.307750px;}
.y2c{bottom:284.310000px;}
.y96{bottom:284.319540px;}
.y55{bottom:287.100000px;}
.y22{bottom:292.131000px;}
.y51{bottom:292.230000px;}
.y7d{bottom:300.595500px;}
.y33{bottom:303.570000px;}
.y95{bottom:307.443420px;}
.y21{bottom:314.275500px;}
.y52{bottom:315.720000px;}
.y7c{bottom:319.857750px;}
.y94{bottom:330.666120px;}
.y20{bottom:336.325500px;}
.y7b{bottom:339.025500px;}
.y93{bottom:353.790000px;}
.y28{bottom:354.240000px;}
.y7a{bottom:358.287750px;}
.y1f{bottom:358.470000px;}
.y87{bottom:358.650000px;}
.y45{bottom:366.480000px;}
.y92{bottom:376.650000px;}
.y79{bottom:377.455500px;}
.y50{bottom:389.880000px;}
.y78{bottom:396.717750px;}
.y86{bottom:400.680000px;}
.y4f{bottom:409.142250px;}
.yc{bottom:409.230000px;}
.y32{bottom:413.457750px;}
.y77{bottom:415.980000px;}
.y91{bottom:424.170000px;}
.y4e{bottom:428.310000px;}
.y31{bottom:432.722250px;}
.y76{bottom:435.145500px;}
.y30{bottom:451.890000px;}
.y75{bottom:454.407750px;}
.y65{bottom:454.410000px;}
.yd{bottom:454.770000px;}
.y2f{bottom:471.152250px;}
.y74{bottom:473.670000px;}
.y90{bottom:474.840000px;}
.y4c{bottom:479.070000px;}
.y2e{bottom:490.320000px;}
.y5e{bottom:498.690000px;}
.y5f{bottom:505.080000px;}
.y1a{bottom:521.820000px;}
.y46{bottom:527.040000px;}
.y62{bottom:528.565500px;}
.y8b{bottom:529.830000px;}
.y1b{bottom:545.310000px;}
.y73{bottom:547.827750px;}
.y4b{bottom:550.527750px;}
.y8f{bottom:553.227750px;}
.y72{bottom:566.995500px;}
.y4a{bottom:569.790000px;}
.y8e{bottom:572.490000px;}
.y61{bottom:586.257750px;}
.y49{bottom:588.957750px;}
.y8d{bottom:591.752250px;}
.y13{bottom:596.070000px;}
.y71{bottom:605.520000px;}
.y48{bottom:608.220000px;}
.y8c{bottom:610.920000px;}
.y19{bottom:619.465500px;}
.y70{bottom:624.687750px;}
.y18{bottom:638.727750px;}
.y6f{bottom:643.950000px;}
.y17{bottom:657.895500px;}
.y40{bottom:658.890000px;}
.y89{bottom:661.680000px;}
.y6e{bottom:663.115500px;}
.y16{bottom:677.157750px;}
.y6d{bottom:682.377750px;}
.y44{bottom:682.380000px;}
.y8a{bottom:685.080000px;}
.y15{bottom:696.420000px;}
.y6c{bottom:701.640000px;}
.y43{bottom:701.642250px;}
.y42{bottom:720.810000px;}
.y54{bottom:733.140000px;}
.y88{bottom:735.840000px;}
.y11{bottom:747.090000px;}
.y12{bottom:770.580000px;}
.y3d{bottom:771.570000px;}
.y57{bottom:788.040000px;}
.y7f{bottom:790.830000px;}
.y3f{bottom:795.060000px;}
.y99{bottom:795.062250px;}
.y5b{bottom:811.527750px;}
.y3e{bottom:814.227750px;}
.yf{bottom:821.250000px;}
.y5a{bottom:830.695500px;}
.y3c{bottom:833.490000px;}
.ye{bottom:844.740000px;}
.y59{bottom:849.957750px;}
.y82{bottom:864.990000px;}
.y58{bottom:869.220000px;}
.y3b{bottom:884.160000px;}
.y85{bottom:888.387750px;}
.y9{bottom:895.500000px;}
.y84{bottom:907.650000px;}
.yb{bottom:918.900000px;}
.y56{bottom:919.890000px;}
.y6b{bottom:924.117750px;}
.y37{bottom:939.150000px;}
.y6a{bottom:943.380000px;}
.y81{bottom:958.410000px;}
.y3a{bottom:962.640000px;}
.y69{bottom:962.642250px;}
.y7{bottom:969.660000px;}
.y39{bottom:981.807750px;}
.y68{bottom:981.810000px;}
.y38{bottom:1001.070000px;}
.y67{bottom:1001.072250px;}
.y6{bottom:1005.300000px;}
.y66{bottom:1020.240000px;}
.y5{bottom:1030.494240px;}
.y36{bottom:1051.740000px;}
.y4{bottom:1060.020000px;}
.y1{bottom:1116.180000px;}
.h5{height:19.258500px;}
.h14{height:31.500000px;}
.h15{height:31.501500px;}
.h17{height:38.428500px;}
.h1c{height:38.430000px;}
.hd{height:38.520000px;}
.h10{height:38.521500px;}
.h6{height:45.219727px;}
.hf{height:45.228727px;}
.h1a{height:45.281250px;}
.h4{height:47.286914px;}
.h2{height:47.351250px;}
.h1{height:48.766641px;}
.h20{height:57.600000px;}
.h9{height:57.690000px;}
.h7{height:57.691500px;}
.h3{height:60.206836px;}
.h1d{height:61.831055px;}
.he{height:76.860000px;}
.h1f{height:76.861500px;}
.hb{height:96.120000px;}
.h11{height:96.208500px;}
.h22{height:115.290000px;}
.h13{height:115.380000px;}
.ha{height:134.550000px;}
.hc{height:206.098500px;}
.h19{height:211.500000px;}
.h1b{height:230.668500px;}
.h1e{height:244.440000px;}
.h12{height:275.940000px;}
.h16{height:302.130000px;}
.h21{height:373.590000px;}
.h8{height:469.711500px;}
.h18{height:513.630000px;}
.h0{height:1188.000000px;}
.w1{width:63.720000px;}
.w2{width:196.470000px;}
.w3{width:448.470000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x10{left:7.290000px;}
.x51{left:10.710000px;}
.x40{left:13.950000px;}
.xb{left:15.840000px;}
.x56{left:16.920000px;}
.x54{left:20.250000px;}
.x24{left:24.120600px;}
.x5e{left:28.710300px;}
.x36{left:30.510450px;}
.x1b{left:35.460600px;}
.x28{left:36.805650px;}
.x55{left:39.253350px;}
.x69{left:40.947900px;}
.x8{left:42.840000px;}
.x6{left:45.090000px;}
.xd{left:46.807050px;}
.x35{left:48.870000px;}
.x75{left:50.672100px;}
.x26{left:55.530000px;}
.x6d{left:58.244700px;}
.x14{left:59.760000px;}
.x72{left:63.540000px;}
.x1c{left:65.160450px;}
.x29{left:68.850000px;}
.xa{left:70.020000px;}
.x22{left:73.530000px;}
.x68{left:76.506750px;}
.x3b{left:79.830000px;}
.x52{left:82.980000px;}
.x4a{left:84.692100px;}
.x43{left:86.238750px;}
.x15{left:89.729400px;}
.x1d{left:92.532600px;}
.x17{left:95.946900px;}
.x7b{left:98.990250px;}
.x44{left:101.610000px;}
.x2{left:107.997540px;}
.x5{left:109.530000px;}
.xf{left:111.607350px;}
.x49{left:114.840000px;}
.x27{left:116.280000px;}
.x63{left:118.372650px;}
.x79{left:123.840000px;}
.x11{left:125.183250px;}
.x57{left:126.379350px;}
.x61{left:128.811000px;}
.x59{left:131.413950px;}
.x6f{left:135.360000px;}
.x19{left:139.429800px;}
.x18{left:146.430000px;}
.x2c{left:151.426500px;}
.x6e{left:154.170000px;}
.x6a{left:157.276200px;}
.x5b{left:163.890750px;}
.x12{left:172.279650px;}
.x7{left:174.780000px;}
.x73{left:176.980950px;}
.x65{left:179.760750px;}
.x32{left:181.530000px;}
.x4b{left:184.991400px;}
.x70{left:207.673200px;}
.x3d{left:215.194050px;}
.x58{left:223.015500px;}
.x3a{left:227.658300px;}
.x4d{left:231.197850px;}
.x3c{left:237.771450px;}
.x5a{left:239.934300px;}
.x13{left:253.800450px;}
.x31{left:255.423870px;}
.x4{left:266.852460px;}
.x71{left:272.790000px;}
.x62{left:287.196750px;}
.x5f{left:293.040000px;}
.x2d{left:297.328500px;}
.x76{left:320.651100px;}
.xc{left:322.476750px;}
.x4c{left:325.477350px;}
.x2a{left:345.770850px;}
.x23{left:349.740000px;}
.x9{left:372.780000px;}
.x33{left:379.530000px;}
.x5d{left:389.227350px;}
.x67{left:403.909950px;}
.x39{left:405.910200px;}
.x2b{left:408.240600px;}
.x30{left:411.210000px;}
.x60{left:416.079000px;}
.x5c{left:418.963350px;}
.x45{left:425.983050px;}
.x64{left:433.521000px;}
.x21{left:435.957600px;}
.x48{left:439.921800px;}
.x1f{left:441.627600px;}
.x74{left:443.616750px;}
.x16{left:446.782500px;}
.x46{left:449.277300px;}
.x7a{left:452.536050px;}
.x1e{left:453.597600px;}
.x3f{left:457.424850px;}
.xe{left:462.342000px;}
.x4e{left:465.222600px;}
.x1a{left:466.855950px;}
.x50{left:468.734850px;}
.x38{left:478.911450px;}
.x47{left:498.338550px;}
.x6b{left:501.595800px;}
.x3{left:506.791200px;}
.x20{left:510.187350px;}
.x4f{left:515.480850px;}
.x41{left:531.221550px;}
.x25{left:540.121950px;}
.x53{left:551.576850px;}
.x6c{left:559.036050px;}
.x3e{left:561.658350px;}
.x42{left:589.197300px;}
.x2f{left:599.940000px;}
.x77{left:664.994550px;}
.x78{left:679.972800px;}
.x66{left:699.647700px;}
.x37{left:726.013200px;}
.x2e{left:775.364400px;}
.x34{left:800.824650px;}
.x1{left:809.998350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls29{letter-spacing:-0.168000pt;}
.ls10{letter-spacing:-0.112000pt;}
.ls11{letter-spacing:-0.056000pt;}
.lsf{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.024533pt;}
.ls15{letter-spacing:0.056000pt;}
.ls0{letter-spacing:0.074560pt;}
.ls8{letter-spacing:0.112000pt;}
.ls7{letter-spacing:0.117120pt;}
.ls21{letter-spacing:0.120000pt;}
.ls9{letter-spacing:0.144000pt;}
.lse{letter-spacing:0.168000pt;}
.lsb{letter-spacing:0.184800pt;}
.lsa{letter-spacing:0.190400pt;}
.ls28{letter-spacing:0.212800pt;}
.ls19{letter-spacing:0.280000pt;}
.ls27{letter-spacing:0.290133pt;}
.lsd{letter-spacing:29.400000pt;}
.ls17{letter-spacing:29.736000pt;}
.ls1{letter-spacing:38.174720pt;}
.ls1e{letter-spacing:41.888000pt;}
.ls1d{letter-spacing:42.224000pt;}
.ls1b{letter-spacing:46.480000pt;}
.ls1a{letter-spacing:46.536000pt;}
.ls1c{letter-spacing:48.216000pt;}
.ls20{letter-spacing:50.512000pt;}
.ls18{letter-spacing:53.032000pt;}
.ls1f{letter-spacing:53.088000pt;}
.lsc{letter-spacing:62.664000pt;}
.ls24{letter-spacing:106.705600pt;}
.ls3{letter-spacing:122.416000pt;}
.ls22{letter-spacing:159.648000pt;}
.ls13{letter-spacing:198.688533pt;}
.ls16{letter-spacing:227.472000pt;}
.ls6{letter-spacing:233.063467pt;}
.ls5{letter-spacing:245.071467pt;}
.ls2{letter-spacing:330.214400pt;}
.ls23{letter-spacing:353.071467pt;}
.ls4{letter-spacing:486.991467pt;}
.ls12{letter-spacing:571.144000pt;}
.ls26{letter-spacing:610.224000pt;}
.ls14{letter-spacing:1261.437333pt;}
.ws0{word-spacing:-12.656000pt;}
.ws1{word-spacing:-12.600000pt;}
.wsd{word-spacing:-12.544000pt;}
.wse{word-spacing:-12.488000pt;}
.wsf{word-spacing:-0.280000pt;}
.ws4{word-spacing:-0.223680pt;}
.ws9{word-spacing:-0.175680pt;}
.ws6{word-spacing:-0.168000pt;}
.ws7{word-spacing:-0.112000pt;}
.ws2{word-spacing:0.000000pt;}
.ws8{word-spacing:0.056000pt;}
.ws3{word-spacing:0.074560pt;}
.wsc{word-spacing:0.112000pt;}
.ws5{word-spacing:0.168000pt;}
.wsb{word-spacing:0.224000pt;}
.wsa{word-spacing:0.280000pt;}
._43{margin-left:-75.544000pt;}
._9c{margin-left:-66.136000pt;}
._9e{margin-left:-63.187349pt;}
._9d{margin-left:-54.662763pt;}
._9b{margin-left:-42.870059pt;}
._44{margin-left:-41.944000pt;}
._9a{margin-left:-13.713237pt;}
._42{margin-left:-12.818176pt;}
._45{margin-left:-11.760000pt;}
._3e{margin-left:-0.901824pt;}
._3{width:1.043840pt;}
._4{width:18.640000pt;}
._7c{width:26.512320pt;}
._2{width:34.223040pt;}
._0{width:39.591360pt;}
._7{width:41.008000pt;}
._5d{width:42.235200pt;}
._1{width:45.407040pt;}
._6{width:48.314880pt;}
._87{width:54.695200pt;}
._75{width:56.616000pt;}
._5{width:63.376000pt;}
._41{width:68.371520pt;}
._73{width:70.397600pt;}
._78{width:74.866400pt;}
._19{width:76.148800pt;}
._25{width:78.736000pt;}
._a0{width:79.979200pt;}
._7f{width:81.575200pt;}
._40{width:83.507200pt;}
._3f{width:84.625600pt;}
._a{width:85.736000pt;}
._55{width:88.670400pt;}
._8c{width:91.173600pt;}
._1e{width:93.021867pt;}
._ac{width:97.255200pt;}
._51{width:99.181600pt;}
._30{width:101.735200pt;}
._ba{width:105.918400pt;}
._2d{width:106.853600pt;}
._20{width:108.455200pt;}
._68{width:110.695200pt;}
._37{width:121.580533pt;}
._5b{width:123.866400pt;}
._91{width:128.725013pt;}
._8d{width:130.877600pt;}
._57{width:134.052800pt;}
._a2{width:135.357600pt;}
._5a{width:136.617600pt;}
._a7{width:139.176800pt;}
._8{width:151.037600pt;}
._b8{width:157.763200pt;}
._64{width:159.345760pt;}
._3b{width:163.195200pt;}
._c{width:166.734400pt;}
._ab{width:170.841120pt;}
._53{width:172.160800pt;}
._b6{width:173.420800pt;}
._23{width:175.364000pt;}
._99{width:178.897600pt;}
._b5{width:179.810400pt;}
._26{width:182.397600pt;}
._65{width:184.660000pt;}
._49{width:186.888800pt;}
._7d{width:188.798400pt;}
._4f{width:190.204267pt;}
._f{width:191.676800pt;}
._22{width:196.481600pt;}
._35{width:197.765920pt;}
._92{width:198.760800pt;}
._52{width:199.981600pt;}
._11{width:201.919200pt;}
._94{width:205.116800pt;}
._b{width:206.735200pt;}
._46{width:207.972800pt;}
._33{width:208.964000pt;}
._84{width:210.554400pt;}
._36{width:215.023200pt;}
._2c{width:220.455200pt;}
._1a{width:221.754400pt;}
._71{width:226.884000pt;}
._1c{width:231.033600pt;}
._b0{width:235.883200pt;}
._a6{width:238.403200pt;}
._90{width:245.117600pt;}
._66{width:248.981600pt;}
._54{width:253.758400pt;}
._6b{width:255.981600pt;}
._98{width:258.288800pt;}
._6e{width:268.161600pt;}
._14{width:270.424000pt;}
._ad{width:274.853600pt;}
._9f{width:277.804800pt;}
._56{width:280.963200pt;}
._47{width:282.251200pt;}
._79{width:283.864000pt;}
._58{width:289.016000pt;}
._3c{width:290.920000pt;}
._29{width:294.448000pt;}
._4b{width:303.688000pt;}
._6f{width:305.928000pt;}
._21{width:308.296800pt;}
._31{width:316.752800pt;}
._80{width:318.169600pt;}
._6a{width:319.368000pt;}
._5e{width:321.910933pt;}
._a1{width:324.464000pt;}
._77{width:325.472000pt;}
._85{width:327.656000pt;}
._18{width:329.616000pt;}
._74{width:332.242400pt;}
._b1{width:336.336000pt;}
._4c{width:338.576000pt;}
._70{width:343.056000pt;}
._63{width:350.672000pt;}
._ae{width:352.352000pt;}
._8f{width:354.984000pt;}
._34{width:358.842133pt;}
._b4{width:364.224000pt;}
._a5{width:368.760000pt;}
._bc{width:379.568000pt;}
._81{width:381.829867pt;}
._96{width:384.440000pt;}
._8a{width:390.096000pt;}
._a8{width:394.587200pt;}
._3a{width:396.480000pt;}
._39{width:401.016000pt;}
._67{width:404.230400pt;}
._38{width:415.408000pt;}
._17{width:422.744000pt;}
._5c{width:425.068000pt;}
._69{width:426.608000pt;}
._13{width:429.072000pt;}
._4a{width:433.328000pt;}
._e{width:434.616000pt;}
._86{width:435.865600pt;}
._1d{width:442.288000pt;}
._a3{width:446.426400pt;}
._2f{width:478.464000pt;}
._15{width:482.944000pt;}
._50{width:487.704000pt;}
._2e{width:491.624000pt;}
._8b{width:503.753600pt;}
._60{width:504.728000pt;}
._6c{width:506.968000pt;}
._7a{width:517.932800pt;}
._4d{width:519.400000pt;}
._a4{width:520.352000pt;}
._6d{width:525.688800pt;}
._89{width:529.368000pt;}
._1f{width:538.919467pt;}
._b9{width:547.904000pt;}
._2a{width:555.296000pt;}
._9{width:556.914400pt;}
._3d{width:560.128800pt;}
._62{width:566.496000pt;}
._97{width:568.428000pt;}
._1b{width:569.357600pt;}
._b2{width:582.344000pt;}
._d{width:609.672000pt;}
._b3{width:612.472000pt;}
._72{width:619.892000pt;}
._af{width:649.096000pt;}
._76{width:653.912000pt;}
._b7{width:677.499200pt;}
._59{width:680.133120pt;}
._5f{width:681.688000pt;}
._4e{width:688.408000pt;}
._95{width:712.779200pt;}
._bb{width:724.864000pt;}
._16{width:740.279467pt;}
._48{width:776.310933pt;}
._88{width:785.158400pt;}
._a9{width:787.968960pt;}
._10{width:805.369067pt;}
._82{width:821.576000pt;}
._32{width:843.416000pt;}
._27{width:866.202400pt;}
._7b{width:875.112000pt;}
._61{width:877.352000pt;}
._93{width:911.232000pt;}
._24{width:915.964000pt;}
._83{width:923.104000pt;}
._2b{width:947.408000pt;}
._7e{width:964.017600pt;}
._aa{width:991.725333pt;}
._8e{width:1015.722400pt;}
._12{width:1106.000000pt;}
._28{width:1122.184000pt;}
.fs2{font-size:56.000000pt;}
.fs0{font-size:58.560000pt;}
.fs1{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:3.760000pt;}
.y4d{bottom:14.640000pt;}
.y5c{bottom:20.800000pt;}
.y29{bottom:20.880000pt;}
.ya{bottom:37.920000pt;}
.y10{bottom:38.000000pt;}
.y3{bottom:51.115440pt;}
.y2b{bottom:54.960000pt;}
.y83{bottom:55.040000pt;}
.y35{bottom:67.995333pt;}
.y2{bottom:67.995360pt;}
.y1c{bottom:72.080000pt;}
.y41{bottom:72.160000pt;}
.y47{bottom:89.200000pt;}
.y14{bottom:106.240000pt;}
.y1d{bottom:165.920000pt;}
.y1e{bottom:169.840000pt;}
.y60{bottom:174.720000pt;}
.y27{bottom:174.776000pt;}
.y5d{bottom:180.400000pt;}
.y26{bottom:181.020000pt;}
.y2d{bottom:186.800000pt;}
.y64{bottom:191.760000pt;}
.y25{bottom:200.704000pt;}
.y80{bottom:203.920000pt;}
.y98{bottom:211.531520pt;}
.y53{bottom:217.120000pt;}
.y24{bottom:220.388000pt;}
.y63{bottom:229.280000pt;}
.y2a{bottom:231.920000pt;}
.y97{bottom:232.173920pt;}
.y23{bottom:239.988000pt;}
.y7e{bottom:250.074000pt;}
.y34{bottom:252.718000pt;}
.y2c{bottom:252.720000pt;}
.y96{bottom:252.728480pt;}
.y55{bottom:255.200000pt;}
.y22{bottom:259.672000pt;}
.y51{bottom:259.760000pt;}
.y7d{bottom:267.196000pt;}
.y33{bottom:269.840000pt;}
.y95{bottom:273.283040pt;}
.y21{bottom:279.356000pt;}
.y52{bottom:280.640000pt;}
.y7c{bottom:284.318000pt;}
.y94{bottom:293.925440pt;}
.y20{bottom:298.956000pt;}
.y7b{bottom:301.356000pt;}
.y93{bottom:314.480000pt;}
.y28{bottom:314.880000pt;}
.y7a{bottom:318.478000pt;}
.y1f{bottom:318.640000pt;}
.y87{bottom:318.800000pt;}
.y45{bottom:325.760000pt;}
.y92{bottom:334.800000pt;}
.y79{bottom:335.516000pt;}
.y50{bottom:346.560000pt;}
.y78{bottom:352.638000pt;}
.y86{bottom:356.160000pt;}
.y4f{bottom:363.682000pt;}
.yc{bottom:363.760000pt;}
.y32{bottom:367.518000pt;}
.y77{bottom:369.760000pt;}
.y91{bottom:377.040000pt;}
.y4e{bottom:380.720000pt;}
.y31{bottom:384.642000pt;}
.y76{bottom:386.796000pt;}
.y30{bottom:401.680000pt;}
.y75{bottom:403.918000pt;}
.y65{bottom:403.920000pt;}
.yd{bottom:404.240000pt;}
.y2f{bottom:418.802000pt;}
.y74{bottom:421.040000pt;}
.y90{bottom:422.080000pt;}
.y4c{bottom:425.840000pt;}
.y2e{bottom:435.840000pt;}
.y5e{bottom:443.280000pt;}
.y5f{bottom:448.960000pt;}
.y1a{bottom:463.840000pt;}
.y46{bottom:468.480000pt;}
.y62{bottom:469.836000pt;}
.y8b{bottom:470.960000pt;}
.y1b{bottom:484.720000pt;}
.y73{bottom:486.958000pt;}
.y4b{bottom:489.358000pt;}
.y8f{bottom:491.758000pt;}
.y72{bottom:503.996000pt;}
.y4a{bottom:506.480000pt;}
.y8e{bottom:508.880000pt;}
.y61{bottom:521.118000pt;}
.y49{bottom:523.518000pt;}
.y8d{bottom:526.002000pt;}
.y13{bottom:529.840000pt;}
.y71{bottom:538.240000pt;}
.y48{bottom:540.640000pt;}
.y8c{bottom:543.040000pt;}
.y19{bottom:550.636000pt;}
.y70{bottom:555.278000pt;}
.y18{bottom:567.758000pt;}
.y6f{bottom:572.400000pt;}
.y17{bottom:584.796000pt;}
.y40{bottom:585.680000pt;}
.y89{bottom:588.160000pt;}
.y6e{bottom:589.436000pt;}
.y16{bottom:601.918000pt;}
.y6d{bottom:606.558000pt;}
.y44{bottom:606.560000pt;}
.y8a{bottom:608.960000pt;}
.y15{bottom:619.040000pt;}
.y6c{bottom:623.680000pt;}
.y43{bottom:623.682000pt;}
.y42{bottom:640.720000pt;}
.y54{bottom:651.680000pt;}
.y88{bottom:654.080000pt;}
.y11{bottom:664.080000pt;}
.y12{bottom:684.960000pt;}
.y3d{bottom:685.840000pt;}
.y57{bottom:700.480000pt;}
.y7f{bottom:702.960000pt;}
.y3f{bottom:706.720000pt;}
.y99{bottom:706.722000pt;}
.y5b{bottom:721.358000pt;}
.y3e{bottom:723.758000pt;}
.yf{bottom:730.000000pt;}
.y5a{bottom:738.396000pt;}
.y3c{bottom:740.880000pt;}
.ye{bottom:750.880000pt;}
.y59{bottom:755.518000pt;}
.y82{bottom:768.880000pt;}
.y58{bottom:772.640000pt;}
.y3b{bottom:785.920000pt;}
.y85{bottom:789.678000pt;}
.y9{bottom:796.000000pt;}
.y84{bottom:806.800000pt;}
.yb{bottom:816.800000pt;}
.y56{bottom:817.680000pt;}
.y6b{bottom:821.438000pt;}
.y37{bottom:834.800000pt;}
.y6a{bottom:838.560000pt;}
.y81{bottom:851.920000pt;}
.y3a{bottom:855.680000pt;}
.y69{bottom:855.682000pt;}
.y7{bottom:861.920000pt;}
.y39{bottom:872.718000pt;}
.y68{bottom:872.720000pt;}
.y38{bottom:889.840000pt;}
.y67{bottom:889.842000pt;}
.y6{bottom:893.600000pt;}
.y66{bottom:906.880000pt;}
.y5{bottom:915.994880pt;}
.y36{bottom:934.880000pt;}
.y4{bottom:942.240000pt;}
.y1{bottom:992.160000pt;}
.h5{height:17.118667pt;}
.h14{height:28.000000pt;}
.h15{height:28.001333pt;}
.h17{height:34.158667pt;}
.h1c{height:34.160000pt;}
.hd{height:34.240000pt;}
.h10{height:34.241333pt;}
.h6{height:40.195312pt;}
.hf{height:40.203313pt;}
.h1a{height:40.250000pt;}
.h4{height:42.032812pt;}
.h2{height:42.090000pt;}
.h1{height:43.348125pt;}
.h20{height:51.200000pt;}
.h9{height:51.280000pt;}
.h7{height:51.281333pt;}
.h3{height:53.517187pt;}
.h1d{height:54.960938pt;}
.he{height:68.320000pt;}
.h1f{height:68.321333pt;}
.hb{height:85.440000pt;}
.h11{height:85.518667pt;}
.h22{height:102.480000pt;}
.h13{height:102.560000pt;}
.ha{height:119.600000pt;}
.hc{height:183.198667pt;}
.h19{height:188.000000pt;}
.h1b{height:205.038667pt;}
.h1e{height:217.280000pt;}
.h12{height:245.280000pt;}
.h16{height:268.560000pt;}
.h21{height:332.080000pt;}
.h8{height:417.521333pt;}
.h18{height:456.560000pt;}
.h0{height:1056.000000pt;}
.w1{width:56.640000pt;}
.w2{width:174.640000pt;}
.w3{width:398.640000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x10{left:6.480000pt;}
.x51{left:9.520000pt;}
.x40{left:12.400000pt;}
.xb{left:14.080000pt;}
.x56{left:15.040000pt;}
.x54{left:18.000000pt;}
.x24{left:21.440533pt;}
.x5e{left:25.520267pt;}
.x36{left:27.120400pt;}
.x1b{left:31.520533pt;}
.x28{left:32.716133pt;}
.x55{left:34.891867pt;}
.x69{left:36.398133pt;}
.x8{left:38.080000pt;}
.x6{left:40.080000pt;}
.xd{left:41.606267pt;}
.x35{left:43.440000pt;}
.x75{left:45.041867pt;}
.x26{left:49.360000pt;}
.x6d{left:51.773067pt;}
.x14{left:53.120000pt;}
.x72{left:56.480000pt;}
.x1c{left:57.920400pt;}
.x29{left:61.200000pt;}
.xa{left:62.240000pt;}
.x22{left:65.360000pt;}
.x68{left:68.006000pt;}
.x3b{left:70.960000pt;}
.x52{left:73.760000pt;}
.x4a{left:75.281867pt;}
.x43{left:76.656667pt;}
.x15{left:79.759467pt;}
.x1d{left:82.251200pt;}
.x17{left:85.286133pt;}
.x7b{left:87.991333pt;}
.x44{left:90.320000pt;}
.x2{left:95.997813pt;}
.x5{left:97.360000pt;}
.xf{left:99.206533pt;}
.x49{left:102.080000pt;}
.x27{left:103.360000pt;}
.x63{left:105.220133pt;}
.x79{left:110.080000pt;}
.x11{left:111.274000pt;}
.x57{left:112.337200pt;}
.x61{left:114.498667pt;}
.x59{left:116.812400pt;}
.x6f{left:120.320000pt;}
.x19{left:123.937600pt;}
.x18{left:130.160000pt;}
.x2c{left:134.601333pt;}
.x6e{left:137.040000pt;}
.x6a{left:139.801067pt;}
.x5b{left:145.680667pt;}
.x12{left:153.137467pt;}
.x7{left:155.360000pt;}
.x73{left:157.316400pt;}
.x65{left:159.787333pt;}
.x32{left:161.360000pt;}
.x4b{left:164.436800pt;}
.x70{left:184.598400pt;}
.x3d{left:191.283600pt;}
.x58{left:198.236000pt;}
.x3a{left:202.362933pt;}
.x4d{left:205.509200pt;}
.x3c{left:211.352400pt;}
.x5a{left:213.274933pt;}
.x13{left:225.600400pt;}
.x31{left:227.043440pt;}
.x4{left:237.202187pt;}
.x71{left:242.480000pt;}
.x62{left:255.286000pt;}
.x5f{left:260.480000pt;}
.x2d{left:264.292000pt;}
.x76{left:285.023200pt;}
.xc{left:286.646000pt;}
.x4c{left:289.313200pt;}
.x2a{left:307.351867pt;}
.x23{left:310.880000pt;}
.x9{left:331.360000pt;}
.x33{left:337.360000pt;}
.x5d{left:345.979867pt;}
.x67{left:359.031067pt;}
.x39{left:360.809067pt;}
.x2b{left:362.880533pt;}
.x30{left:365.520000pt;}
.x60{left:369.848000pt;}
.x5c{left:372.411867pt;}
.x45{left:378.651600pt;}
.x64{left:385.352000pt;}
.x21{left:387.517867pt;}
.x48{left:391.041600pt;}
.x1f{left:392.557867pt;}
.x74{left:394.326000pt;}
.x16{left:397.140000pt;}
.x46{left:399.357600pt;}
.x7a{left:402.254267pt;}
.x1e{left:403.197867pt;}
.x3f{left:406.599867pt;}
.xe{left:410.970667pt;}
.x4e{left:413.531200pt;}
.x1a{left:414.983067pt;}
.x50{left:416.653200pt;}
.x38{left:425.699067pt;}
.x47{left:442.967600pt;}
.x6b{left:445.862933pt;}
.x3{left:450.481067pt;}
.x20{left:453.499867pt;}
.x4f{left:458.205200pt;}
.x41{left:472.196933pt;}
.x25{left:480.108400pt;}
.x53{left:490.290533pt;}
.x6c{left:496.920933pt;}
.x3e{left:499.251867pt;}
.x42{left:523.730933pt;}
.x2f{left:533.280000pt;}
.x77{left:591.106267pt;}
.x78{left:604.420267pt;}
.x66{left:621.909067pt;}
.x37{left:645.345067pt;}
.x2e{left:689.212800pt;}
.x34{left:711.844133pt;}
.x1{left:719.998533pt;}
}




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