
    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_c9f2f60131665a72ca4e1f19.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.108000;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_ff08cf71bbe3e6a40e01be59.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.141000;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_eb47d743ef3797fabe75acec.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093000;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_732030fe730a116d6c3e4960.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.000000;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_5407dc771250b09198919e07.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910000;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_343b807ab6788082032c7b82.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.108000;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_732030fe730a116d6c3e4960.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.000000;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_a3abe7cb85db5e58cbfd3ca7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.890000;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_aa20e27e892fc55c4f7fe7a1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.897000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_69c37c157b61b1cfa6a7e9a5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_ac795086e003bbfbe962a621.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.889000;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);}
.v3{vertical-align:-30.959988px;}
.v2{vertical-align:-25.199990px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.959988px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.258566px;}
.ls1{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.368280px;}
.ls6{letter-spacing:0.502560px;}
.ls8{letter-spacing:0.733925px;}
.ls3{letter-spacing:1.167120px;}
.ls4{letter-spacing:1.799999px;}
.ls5{letter-spacing:9.716396px;}
.ls7{letter-spacing:59.664936px;}
.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;}
}
.ws1{word-spacing:-16.919993px;}
.ws2{word-spacing:-14.043594px;}
.ws3{word-spacing:-11.335855px;}
.ws4{word-spacing:-9.136436px;}
.ws0{word-spacing:0.000000px;}
._27{margin-left:-12.839159px;}
._30{margin-left:-6.432391px;}
._2f{margin-left:-2.125399px;}
._0{margin-left:-1.014957px;}
._1{width:1.171178px;}
._3{width:2.940600px;}
._5{width:4.367410px;}
._4{width:5.513244px;}
._10{width:6.935005px;}
._f{width:8.890695px;}
._2{width:9.910081px;}
._d{width:11.713933px;}
._7{width:12.839207px;}
._6{width:14.250366px;}
._26{width:15.310005px;}
._2b{width:16.462436px;}
._8{width:18.289016px;}
._12{width:19.416523px;}
._13{width:20.618452px;}
._2e{width:22.055039px;}
._24{width:23.277622px;}
._2a{width:24.429228px;}
._29{width:25.465076px;}
._11{width:26.565114px;}
._25{width:27.597593px;}
._34{width:28.612833px;}
._28{width:29.652987px;}
._23{width:31.001978px;}
._21{width:32.038449px;}
._31{width:33.179192px;}
._2c{width:34.203653px;}
._a{width:35.245547px;}
._9{width:36.455059px;}
._32{width:37.498446px;}
._33{width:39.307691px;}
._36{width:40.433198px;}
._35{width:41.456808px;}
._e{width:43.342540px;}
._c{width:44.782608px;}
._b{width:46.535100px;}
._37{width:51.385037px;}
._2d{width:53.014976px;}
._22{width:54.411477px;}
._39{width:55.681440px;}
._3a{width:56.770383px;}
._1d{width:58.615026px;}
._3b{width:60.619370px;}
._17{width:62.486642px;}
._14{width:89.490257px;}
._1e{width:115.872824px;}
._1f{width:118.589214px;}
._19{width:120.952203px;}
._1a{width:125.347540px;}
._1c{width:126.637622px;}
._1b{width:130.482559px;}
._18{width:142.390173px;}
._20{width:149.772985px;}
._15{width:182.520028px;}
._16{width:183.960258px;}
._38{width:1760.039296px;}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.545745px;}
.fs5{font-size:45.343422px;}
.fs7{font-size:56.174378px;}
.fs8{font-size:62.263175px;}
.fs0{font-size:67.679973px;}
.fs1{font-size:79.183168px;}
.fs4{font-size:90.014364px;}
.fs2{font-size:101.519959px;}
.fs3{font-size:157.694337px;}
.y0{bottom:0.000000px;}
.y106{bottom:3.419900px;}
.yf7{bottom:3.419945px;}
.yfa{bottom:3.419948px;}
.y3{bottom:4.139978px;}
.y2{bottom:51.120000px;}
.y1{bottom:55.259978px;}
.y10f{bottom:75.419970px;}
.y10d{bottom:76.679969px;}
.yfb{bottom:100.619960px;}
.y47{bottom:104.399958px;}
.yf8{bottom:106.379957px;}
.ydc{bottom:106.559957px;}
.yfd{bottom:107.459957px;}
.y6d{bottom:110.879956px;}
.ydd{bottom:119.699952px;}
.y46{bottom:120.599952px;}
.yb1{bottom:121.319951px;}
.y64{bottom:127.079949px;}
.yf9{bottom:127.260000px;}
.yf6{bottom:132.840000px;}
.ye3{bottom:134.819946px;}
.y45{bottom:136.979945px;}
.y63{bottom:137.519945px;}
.y36{bottom:137.699945px;}
.y1d{bottom:138.959944px;}
.y65{bottom:139.139944px;}
.y6f{bottom:143.279943px;}
.ydb{bottom:145.619942px;}
.y44{bottom:153.179939px;}
.y6e{bottom:153.899938px;}
.ya5{bottom:158.579937px;}
.y60{bottom:159.659936px;}
.y1c{bottom:168.299933px;}
.y43{bottom:169.379932px;}
.y5f{bottom:170.099932px;}
.y10c{bottom:173.699931px;}
.ye2{bottom:173.879930px;}
.y8b{bottom:175.859930px;}
.y35{bottom:176.759929px;}
.y62{bottom:178.019929px;}
.y10e{bottom:178.919928px;}
.y103{bottom:181.799927px;}
.yda{bottom:184.499926px;}
.y42{bottom:185.579926px;}
.yad{bottom:186.299925px;}
.ya1{bottom:194.039922px;}
.y1b{bottom:197.279921px;}
.y71{bottom:197.459921px;}
.y109{bottom:197.819921px;}
.y6c{bottom:201.779919px;}
.ya0{bottom:205.739918px;}
.y41{bottom:208.079917px;}
.ye1{bottom:212.759915px;}
.y34{bottom:215.639914px;}
.y5e{bottom:216.899913px;}
.y10b{bottom:217.079913px;}
.y6b{bottom:217.979913px;}
.y40{bottom:218.699913px;}
.yd9{bottom:223.379911px;}
.yf3{bottom:224.459910px;}
.y1a{bottom:226.619909px;}
.y10a{bottom:232.019907px;}
.y6a{bottom:234.179906px;}
.yf2{bottom:234.899906px;}
.y70{bottom:236.339905px;}
.yc7{bottom:240.659904px;}
.y105{bottom:245.880000px;}
.yff{bottom:246.599901px;}
.y8a{bottom:250.379900px;}
.yc6{bottom:251.099900px;}
.ye0{bottom:251.639899px;}
.y33{bottom:254.519898px;}
.y19{bottom:255.779898px;}
.y5d{bottom:255.959898px;}
.y69{bottom:256.859897px;}
.yd8{bottom:262.259895px;}
.y89{bottom:266.759893px;}
.y68{bottom:267.299893px;}
.y9f{bottom:275.399890px;}
.y88{bottom:282.779887px;}
.y18{bottom:284.759886px;}
.ydf{bottom:289.259884px;}
.yc5{bottom:290.519884px;}
.y3f{bottom:292.859883px;}
.y32{bottom:293.399883px;}
.y73{bottom:294.299882px;}
.y5c{bottom:294.839882px;}
.y87{bottom:298.979880px;}
.yde{bottom:299.699880px;}
.yd7{bottom:301.139880px;}
.yf1{bottom:305.459878px;}
.yfc{bottom:309.059876px;}
.y107{bottom:310.859876px;}
.y17{bottom:314.099874px;}
.y9e{bottom:314.279874px;}
.y86{bottom:315.179874px;}
.y108{bottom:317.879873px;}
.yc4{bottom:329.399868px;}
.y85{bottom:331.559867px;}
.y31{bottom:332.279867px;}
.y72{bottom:333.179867px;}
.y5b{bottom:333.719867px;}
.yac{bottom:337.859865px;}
.yd6{bottom:340.199864px;}
.y16{bottom:343.259863px;}
.y84{bottom:347.759861px;}
.y9d{bottom:353.159859px;}
.ya4{bottom:354.239858px;}
.y83{bottom:363.959854px;}
.ya3{bottom:364.679854px;}
.y101{bottom:367.199853px;}
.yc3{bottom:368.459853px;}
.y104{bottom:370.079852px;}
.y30{bottom:371.339851px;}
.y8d{bottom:372.059851px;}
.y5a{bottom:372.599851px;}
.y15{bottom:374.399850px;}
.y102{bottom:374.579850px;}
.y100{bottom:378.539849px;}
.yd5{bottom:379.079848px;}
.y82{bottom:379.979848px;}
.ya8{bottom:380.879848px;}
.yf5{bottom:384.119846px;}
.y9c{bottom:392.039843px;}
.y81{bottom:396.359841px;}
.yb0{bottom:402.659839px;}
.yc2{bottom:407.339837px;}
.y14{bottom:408.239837px;}
.yfe{bottom:408.779836px;}
.y2f{bottom:410.219836px;}
.y8c{bottom:410.939836px;}
.y59{bottom:411.479835px;}
.y80{bottom:412.559835px;}
.yaf{bottom:413.279835px;}
.yd4{bottom:417.959833px;}
.y7f{bottom:428.759828px;}
.yeb{bottom:430.559828px;}
.y9b{bottom:430.919828px;}
.y7e{bottom:444.959822px;}
.yc1{bottom:446.219822px;}
.y67{bottom:448.559821px;}
.y2e{bottom:449.099820px;}
.y58{bottom:450.539820px;}
.yd3{bottom:456.839817px;}
.y13{bottom:457.739817px;}
.y7d{bottom:461.339815px;}
.yea{bottom:469.439812px;}
.y9a{bottom:469.979812px;}
.y7c{bottom:477.359809px;}
.yc0{bottom:485.099806px;}
.y66{bottom:487.439805px;}
.y2d{bottom:487.979805px;}
.y57{bottom:489.419804px;}
.y7b{bottom:493.559803px;}
.yd2{bottom:495.719802px;}
.yf0{bottom:500.039800px;}
.y99{bottom:508.859796px;}
.y7a{bottom:509.759796px;}
.yef{bottom:510.479796px;}
.y12{bottom:513.179795px;}
.ybf{bottom:523.979790px;}
.y79{bottom:526.139790px;}
.y2c{bottom:526.859789px;}
.y56{bottom:528.299789px;}
.yd1{bottom:534.779786px;}
.y78{bottom:542.339783px;}
.y98{bottom:547.739781px;}
.yab{bottom:548.819780px;}
.y11{bottom:552.059779px;}
.y77{bottom:558.539777px;}
.yaa{bottom:559.259776px;}
.ybe{bottom:563.039775px;}
.y2b{bottom:565.919774px;}
.y55{bottom:567.179773px;}
.yd0{bottom:573.659771px;}
.y76{bottom:574.559770px;}
.y97{bottom:586.619765px;}
.y75{bottom:590.939764px;}
.ybd{bottom:601.919759px;}
.y10{bottom:603.719759px;}
.y2a{bottom:604.619758px;}
.y54{bottom:606.059758px;}
.y90{bottom:607.139757px;}
.y74{bottom:607.859757px;}
.ycf{bottom:612.539755px;}
.y8f{bottom:623.339751px;}
.y96{bottom:625.499750px;}
.y8e{bottom:640.259744px;}
.ybc{bottom:640.799744px;}
.y29{bottom:643.499743px;}
.y53{bottom:645.119742px;}
.yce{bottom:651.419739px;}
.yf{bottom:661.499735px;}
.y95{bottom:664.559734px;}
.ybb{bottom:679.679728px;}
.y28{bottom:682.379727px;}
.yee{bottom:683.459727px;}
.y52{bottom:683.999726px;}
.ycd{bottom:690.299724px;}
.y94{bottom:703.439719px;}
.ye{bottom:705.059718px;}
.y3d{bottom:711.539715px;}
.yba{bottom:718.559713px;}
.y27{bottom:721.259711px;}
.yed{bottom:722.339711px;}
.y51{bottom:722.879711px;}
.ycc{bottom:729.359708px;}
.y3c{bottom:740.699704px;}
.y93{bottom:742.319703px;}
.yd{bottom:748.979700px;}
.yb9{bottom:757.619697px;}
.y26{bottom:760.319696px;}
.yec{bottom:761.219696px;}
.y50{bottom:761.759695px;}
.ycb{bottom:768.239693px;}
.y3b{bottom:769.859692px;}
.y92{bottom:781.199688px;}
.yc{bottom:792.719683px;}
.yb8{bottom:796.499681px;}
.y3a{bottom:799.019680px;}
.y25{bottom:799.199680px;}
.ya9{bottom:800.099680px;}
.y4f{bottom:800.639680px;}
.yca{bottom:807.119677px;}
.y91{bottom:820.079672px;}
.y39{bottom:828.359669px;}
.yb{bottom:831.419667px;}
.yb7{bottom:835.379666px;}
.y24{bottom:838.079665px;}
.ya7{bottom:839.159664px;}
.y4e{bottom:839.699664px;}
.yc9{bottom:845.999662px;}
.y38{bottom:857.339657px;}
.ye9{bottom:859.139656px;}
.ya{bottom:865.439654px;}
.yb6{bottom:874.259650px;}
.y23{bottom:876.959649px;}
.ya6{bottom:878.039649px;}
.y4d{bottom:878.579649px;}
.yc8{bottom:880.739648px;}
.y37{bottom:886.679645px;}
.ye8{bottom:898.019641px;}
.y9{bottom:899.459640px;}
.yb5{bottom:913.139635px;}
.y22{bottom:915.839634px;}
.y4c{bottom:917.459633px;}
.y8{bottom:933.659627px;}
.ye7{bottom:936.899625px;}
.yb4{bottom:952.199619px;}
.y21{bottom:954.899618px;}
.yae{bottom:955.799618px;}
.y4b{bottom:956.339617px;}
.y7{bottom:968.219613px;}
.ye6{bottom:975.779610px;}
.yb3{bottom:991.079604px;}
.y3e{bottom:993.239603px;}
.y20{bottom:993.779602px;}
.y4a{bottom:995.219602px;}
.y6{bottom:1002.239599px;}
.ye5{bottom:1014.659594px;}
.yb2{bottom:1029.959588px;}
.yf4{bottom:1032.119587px;}
.y1f{bottom:1032.659587px;}
.y49{bottom:1033.739587px;}
.y61{bottom:1034.279586px;}
.y5{bottom:1036.259585px;}
.ye4{bottom:1053.719579px;}
.y4{bottom:1070.459572px;}
.y1e{bottom:1071.719571px;}
.ya2{bottom:1072.619571px;}
.y48{bottom:1073.159571px;}
.h10{height:0.000000px;}
.h15{height:15.840000px;}
.h18{height:16.020000px;}
.h2{height:19.080000px;}
.h16{height:31.196274px;}
.hb{height:32.525713px;}
.h17{height:38.367100px;}
.h14{height:38.647972px;}
.hf{height:40.355645px;}
.h19{height:46.563821px;}
.h13{height:46.766861px;}
.h12{height:47.646701px;}
.hc{height:49.995196px;}
.he{height:59.287656px;}
.h1{height:60.235176px;}
.h9{height:62.468615px;}
.h3{height:70.473020px;}
.h11{height:70.680825px;}
.ha{height:71.315633px;}
.hd{height:72.035633px;}
.h4{height:73.086064px;}
.h7{height:80.112784px;}
.h8{height:83.083258px;}
.h5{height:90.352764px;}
.h6{height:145.551873px;}
.h0{height:1188.000000px;}
.we{width:3.600000px;}
.w14{width:3.780000px;}
.w10{width:5.940000px;}
.wa{width:6.300000px;}
.wd{width:7.380000px;}
.w1{width:7.560000px;}
.w11{width:7.920000px;}
.w5{width:8.460000px;}
.w2{width:9.540000px;}
.w4{width:13.140000px;}
.w3{width:14.040000px;}
.w8{width:16.920000px;}
.w6{width:18.000000px;}
.w7{width:22.500000px;}
.w17{width:32.940000px;}
.w13{width:35.280000px;}
.wc{width:39.060000px;}
.w16{width:62.460000px;}
.w15{width:70.200000px;}
.w18{width:77.940000px;}
.w12{width:84.780000px;}
.wb{width:98.280000px;}
.wf{width:121.320000px;}
.w9{width:266.400000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xb{left:158.759936px;}
.x7{left:161.279935px;}
.x17{left:184.139926px;}
.xf{left:208.799916px;}
.x9{left:211.319915px;}
.x13{left:222.299911px;}
.x8{left:238.139905px;}
.x21{left:251.819899px;}
.x15{left:258.659897px;}
.x16{left:260.279941px;}
.x2c{left:335.159866px;}
.x2b{left:339.839864px;}
.x6{left:345.599862px;}
.x5{left:351.899859px;}
.x4{left:363.779854px;}
.xa{left:368.639853px;}
.x2f{left:446.399821px;}
.x3{left:458.459817px;}
.x2e{left:486.359805px;}
.x19{left:489.600000px;}
.x18{left:491.580000px;}
.x23{left:499.319800px;}
.x2d{left:503.099799px;}
.x32{left:534.420000px;}
.x25{left:537.659785px;}
.x1e{left:540.899784px;}
.x33{left:542.160000px;}
.x2a{left:547.199781px;}
.x1f{left:548.639781px;}
.x20{left:555.839778px;}
.x28{left:557.639777px;}
.x31{left:559.259776px;}
.x27{left:570.779772px;}
.x22{left:571.859771px;}
.x1a{left:587.700000px;}
.xd{left:590.219764px;}
.x39{left:618.120000px;}
.x1b{left:626.580000px;}
.x3a{left:629.460000px;}
.x1c{left:633.600000px;}
.x34{left:634.680000px;}
.x1d{left:637.200000px;}
.x3b{left:662.220000px;}
.x3c{left:665.820000px;}
.x35{left:669.780000px;}
.x36{left:673.200000px;}
.x3d{left:676.440000px;}
.x37{left:680.400000px;}
.x38{left:684.000000px;}
.x26{left:727.739709px;}
.x1{left:732.959707px;}
.x12{left:735.840000px;}
.x11{left:740.340000px;}
.x14{left:741.420000px;}
.x30{left:742.499703px;}
.x10{left:744.300000px;}
.x3e{left:746.819701px;}
.xe{left:748.800000px;}
.x2{left:750.780000px;}
.x24{left:753.479699px;}
.xc{left:758.339697px;}
.x29{left:759.960000px;}
@media print{
.v3{vertical-align:-27.519989pt;}
.v2{vertical-align:-22.399991pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:27.519989pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.229837pt;}
.ls1{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.327360pt;}
.ls6{letter-spacing:0.446720pt;}
.ls8{letter-spacing:0.652377pt;}
.ls3{letter-spacing:1.037440pt;}
.ls4{letter-spacing:1.599999pt;}
.ls5{letter-spacing:8.636797pt;}
.ls7{letter-spacing:53.035499pt;}
.ws1{word-spacing:-15.039994pt;}
.ws2{word-spacing:-12.483195pt;}
.ws3{word-spacing:-10.076316pt;}
.ws4{word-spacing:-8.121277pt;}
.ws0{word-spacing:0.000000pt;}
._27{margin-left:-11.412586pt;}
._30{margin-left:-5.717681pt;}
._2f{margin-left:-1.889244pt;}
._0{margin-left:-0.902184pt;}
._1{width:1.041047pt;}
._3{width:2.613867pt;}
._5{width:3.882142pt;}
._4{width:4.900661pt;}
._10{width:6.164449pt;}
._f{width:7.902840pt;}
._2{width:8.808961pt;}
._d{width:10.412384pt;}
._7{width:11.412628pt;}
._6{width:12.666992pt;}
._26{width:13.608893pt;}
._2b{width:14.633277pt;}
._8{width:16.256903pt;}
._12{width:17.259132pt;}
._13{width:18.327513pt;}
._2e{width:19.604479pt;}
._24{width:20.691219pt;}
._2a{width:21.714869pt;}
._29{width:22.635623pt;}
._11{width:23.613435pt;}
._25{width:24.531193pt;}
._34{width:25.433630pt;}
._28{width:26.358211pt;}
._23{width:27.557314pt;}
._21{width:28.478621pt;}
._31{width:29.492615pt;}
._2c{width:30.403247pt;}
._a{width:31.329375pt;}
._9{width:32.404497pt;}
._32{width:33.331952pt;}
._33{width:34.940170pt;}
._36{width:35.940621pt;}
._35{width:36.850496pt;}
._e{width:38.526702pt;}
._c{width:39.806762pt;}
._b{width:41.364533pt;}
._37{width:45.675589pt;}
._2d{width:47.124423pt;}
._22{width:48.365758pt;}
._39{width:49.494613pt;}
._3a{width:50.462563pt;}
._1d{width:52.102246pt;}
._3b{width:53.883884pt;}
._17{width:55.543682pt;}
._14{width:79.546895pt;}
._1e{width:102.998065pt;}
._1f{width:105.412635pt;}
._19{width:107.513069pt;}
._1a{width:111.420035pt;}
._1c{width:112.566775pt;}
._1b{width:115.984497pt;}
._18{width:126.569043pt;}
._20{width:133.131542pt;}
._15{width:162.240025pt;}
._16{width:163.520229pt;}
._38{width:1564.479374pt;}
.fs6{font-size:32.485107pt;}
.fs5{font-size:40.305264pt;}
.fs7{font-size:49.932780pt;}
.fs8{font-size:55.345045pt;}
.fs0{font-size:60.159976pt;}
.fs1{font-size:70.385039pt;}
.fs4{font-size:80.012768pt;}
.fs2{font-size:90.239964pt;}
.fs3{font-size:140.172744pt;}
.y0{bottom:0.000000pt;}
.y106{bottom:3.039911pt;}
.yf7{bottom:3.039952pt;}
.yfa{bottom:3.039954pt;}
.y3{bottom:3.679980pt;}
.y2{bottom:45.440000pt;}
.y1{bottom:49.119980pt;}
.y10f{bottom:67.039973pt;}
.y10d{bottom:68.159973pt;}
.yfb{bottom:89.439964pt;}
.y47{bottom:92.799963pt;}
.yf8{bottom:94.559962pt;}
.ydc{bottom:94.719962pt;}
.yfd{bottom:95.519962pt;}
.y6d{bottom:98.559961pt;}
.ydd{bottom:106.399957pt;}
.y46{bottom:107.199957pt;}
.yb1{bottom:107.839957pt;}
.y64{bottom:112.959955pt;}
.yf9{bottom:113.120000pt;}
.yf6{bottom:118.080000pt;}
.ye3{bottom:119.839952pt;}
.y45{bottom:121.759951pt;}
.y63{bottom:122.239951pt;}
.y36{bottom:122.399951pt;}
.y1d{bottom:123.519951pt;}
.y65{bottom:123.679951pt;}
.y6f{bottom:127.359949pt;}
.ydb{bottom:129.439948pt;}
.y44{bottom:136.159946pt;}
.y6e{bottom:136.799945pt;}
.ya5{bottom:140.959944pt;}
.y60{bottom:141.919943pt;}
.y1c{bottom:149.599940pt;}
.y43{bottom:150.559940pt;}
.y5f{bottom:151.199940pt;}
.y10c{bottom:154.399938pt;}
.ye2{bottom:154.559938pt;}
.y8b{bottom:156.319937pt;}
.y35{bottom:157.119937pt;}
.y62{bottom:158.239937pt;}
.y10e{bottom:159.039936pt;}
.y103{bottom:161.599935pt;}
.yda{bottom:163.999934pt;}
.y42{bottom:164.959934pt;}
.yad{bottom:165.599934pt;}
.ya1{bottom:172.479931pt;}
.y1b{bottom:175.359930pt;}
.y71{bottom:175.519930pt;}
.y109{bottom:175.839930pt;}
.y6c{bottom:179.359928pt;}
.ya0{bottom:182.879927pt;}
.y41{bottom:184.959926pt;}
.ye1{bottom:189.119924pt;}
.y34{bottom:191.679923pt;}
.y5e{bottom:192.799923pt;}
.y10b{bottom:192.959923pt;}
.y6b{bottom:193.759922pt;}
.y40{bottom:194.399922pt;}
.yd9{bottom:198.559921pt;}
.yf3{bottom:199.519920pt;}
.y1a{bottom:201.439919pt;}
.y10a{bottom:206.239918pt;}
.y6a{bottom:208.159917pt;}
.yf2{bottom:208.799916pt;}
.y70{bottom:210.079916pt;}
.yc7{bottom:213.919914pt;}
.y105{bottom:218.560000pt;}
.yff{bottom:219.199912pt;}
.y8a{bottom:222.559911pt;}
.yc6{bottom:223.199911pt;}
.ye0{bottom:223.679911pt;}
.y33{bottom:226.239910pt;}
.y19{bottom:227.359909pt;}
.y5d{bottom:227.519909pt;}
.y69{bottom:228.319909pt;}
.yd8{bottom:233.119907pt;}
.y89{bottom:237.119905pt;}
.y68{bottom:237.599905pt;}
.y9f{bottom:244.799902pt;}
.y88{bottom:251.359899pt;}
.y18{bottom:253.119899pt;}
.ydf{bottom:257.119897pt;}
.yc5{bottom:258.239897pt;}
.y3f{bottom:260.319896pt;}
.y32{bottom:260.799896pt;}
.y73{bottom:261.599895pt;}
.y5c{bottom:262.079895pt;}
.y87{bottom:265.759894pt;}
.yde{bottom:266.399893pt;}
.yd7{bottom:267.679893pt;}
.yf1{bottom:271.519891pt;}
.yfc{bottom:274.719890pt;}
.y107{bottom:276.319889pt;}
.y17{bottom:279.199888pt;}
.y9e{bottom:279.359888pt;}
.y86{bottom:280.159888pt;}
.y108{bottom:282.559887pt;}
.yc4{bottom:292.799883pt;}
.y85{bottom:294.719882pt;}
.y31{bottom:295.359882pt;}
.y72{bottom:296.159882pt;}
.y5b{bottom:296.639881pt;}
.yac{bottom:300.319880pt;}
.yd6{bottom:302.399879pt;}
.y16{bottom:305.119878pt;}
.y84{bottom:309.119876pt;}
.y9d{bottom:313.919874pt;}
.ya4{bottom:314.879874pt;}
.y83{bottom:323.519871pt;}
.ya3{bottom:324.159870pt;}
.y101{bottom:326.399869pt;}
.yc3{bottom:327.519869pt;}
.y104{bottom:328.959868pt;}
.y30{bottom:330.079868pt;}
.y8d{bottom:330.719868pt;}
.y5a{bottom:331.199868pt;}
.y15{bottom:332.799867pt;}
.y102{bottom:332.959867pt;}
.y100{bottom:336.479865pt;}
.yd5{bottom:336.959865pt;}
.y82{bottom:337.759865pt;}
.ya8{bottom:338.559865pt;}
.yf5{bottom:341.439863pt;}
.y9c{bottom:348.479861pt;}
.y81{bottom:352.319859pt;}
.yb0{bottom:357.919857pt;}
.yc2{bottom:362.079855pt;}
.y14{bottom:362.879855pt;}
.yfe{bottom:363.359855pt;}
.y2f{bottom:364.639854pt;}
.y8c{bottom:365.279854pt;}
.y59{bottom:365.759854pt;}
.y80{bottom:366.719853pt;}
.yaf{bottom:367.359853pt;}
.yd4{bottom:371.519851pt;}
.y7f{bottom:381.119848pt;}
.yeb{bottom:382.719847pt;}
.y9b{bottom:383.039847pt;}
.y7e{bottom:395.519842pt;}
.yc1{bottom:396.639841pt;}
.y67{bottom:398.719841pt;}
.y2e{bottom:399.199840pt;}
.y58{bottom:400.479840pt;}
.yd3{bottom:406.079838pt;}
.y13{bottom:406.879837pt;}
.y7d{bottom:410.079836pt;}
.yea{bottom:417.279833pt;}
.y9a{bottom:417.759833pt;}
.y7c{bottom:424.319830pt;}
.yc0{bottom:431.199828pt;}
.y66{bottom:433.279827pt;}
.y2d{bottom:433.759826pt;}
.y57{bottom:435.039826pt;}
.y7b{bottom:438.719825pt;}
.yd2{bottom:440.639824pt;}
.yf0{bottom:444.479822pt;}
.y99{bottom:452.319819pt;}
.y7a{bottom:453.119819pt;}
.yef{bottom:453.759818pt;}
.y12{bottom:456.159818pt;}
.ybf{bottom:465.759814pt;}
.y79{bottom:467.679813pt;}
.y2c{bottom:468.319813pt;}
.y56{bottom:469.599812pt;}
.yd1{bottom:475.359810pt;}
.y78{bottom:482.079807pt;}
.y98{bottom:486.879805pt;}
.yab{bottom:487.839805pt;}
.y11{bottom:490.719804pt;}
.y77{bottom:496.479801pt;}
.yaa{bottom:497.119801pt;}
.ybe{bottom:500.479800pt;}
.y2b{bottom:503.039799pt;}
.y55{bottom:504.159798pt;}
.yd0{bottom:509.919796pt;}
.y76{bottom:510.719796pt;}
.y97{bottom:521.439791pt;}
.y75{bottom:525.279790pt;}
.ybd{bottom:535.039786pt;}
.y10{bottom:536.639785pt;}
.y2a{bottom:537.439785pt;}
.y54{bottom:538.719785pt;}
.y90{bottom:539.679784pt;}
.y74{bottom:540.319784pt;}
.ycf{bottom:544.479782pt;}
.y8f{bottom:554.079778pt;}
.y96{bottom:555.999778pt;}
.y8e{bottom:569.119772pt;}
.ybc{bottom:569.599772pt;}
.y29{bottom:571.999771pt;}
.y53{bottom:573.439771pt;}
.yce{bottom:579.039768pt;}
.yf{bottom:587.999765pt;}
.y95{bottom:590.719764pt;}
.ybb{bottom:604.159758pt;}
.y28{bottom:606.559757pt;}
.yee{bottom:607.519757pt;}
.y52{bottom:607.999757pt;}
.ycd{bottom:613.599755pt;}
.y94{bottom:625.279750pt;}
.ye{bottom:626.719749pt;}
.y3d{bottom:632.479747pt;}
.yba{bottom:638.719745pt;}
.y27{bottom:641.119744pt;}
.yed{bottom:642.079743pt;}
.y51{bottom:642.559743pt;}
.ycc{bottom:648.319741pt;}
.y3c{bottom:658.399737pt;}
.y93{bottom:659.839736pt;}
.yd{bottom:665.759734pt;}
.yb9{bottom:673.439731pt;}
.y26{bottom:675.839730pt;}
.yec{bottom:676.639729pt;}
.y50{bottom:677.119729pt;}
.ycb{bottom:682.879727pt;}
.y3b{bottom:684.319726pt;}
.y92{bottom:694.399722pt;}
.yc{bottom:704.639718pt;}
.yb8{bottom:707.999717pt;}
.y3a{bottom:710.239716pt;}
.y25{bottom:710.399716pt;}
.ya9{bottom:711.199716pt;}
.y4f{bottom:711.679715pt;}
.yca{bottom:717.439713pt;}
.y91{bottom:728.959708pt;}
.y39{bottom:736.319705pt;}
.yb{bottom:739.039704pt;}
.yb7{bottom:742.559703pt;}
.y24{bottom:744.959702pt;}
.ya7{bottom:745.919702pt;}
.y4e{bottom:746.399701pt;}
.yc9{bottom:751.999699pt;}
.y38{bottom:762.079695pt;}
.ye9{bottom:763.679695pt;}
.ya{bottom:769.279692pt;}
.yb6{bottom:777.119689pt;}
.y23{bottom:779.519688pt;}
.ya6{bottom:780.479688pt;}
.y4d{bottom:780.959688pt;}
.yc8{bottom:782.879687pt;}
.y37{bottom:788.159685pt;}
.ye8{bottom:798.239681pt;}
.y9{bottom:799.519680pt;}
.yb5{bottom:811.679675pt;}
.y22{bottom:814.079674pt;}
.y4c{bottom:815.519674pt;}
.y8{bottom:829.919668pt;}
.ye7{bottom:832.799667pt;}
.yb4{bottom:846.399661pt;}
.y21{bottom:848.799660pt;}
.yae{bottom:849.599660pt;}
.y4b{bottom:850.079660pt;}
.y7{bottom:860.639656pt;}
.ye6{bottom:867.359653pt;}
.yb3{bottom:880.959648pt;}
.y3e{bottom:882.879647pt;}
.y20{bottom:883.359647pt;}
.y4a{bottom:884.639646pt;}
.y6{bottom:890.879644pt;}
.ye5{bottom:901.919639pt;}
.yb2{bottom:915.519634pt;}
.yf4{bottom:917.439633pt;}
.y1f{bottom:917.919633pt;}
.y49{bottom:918.879632pt;}
.y61{bottom:919.359632pt;}
.y5{bottom:921.119632pt;}
.ye4{bottom:936.639625pt;}
.y4{bottom:951.519619pt;}
.y1e{bottom:952.639619pt;}
.ya2{bottom:953.439619pt;}
.y48{bottom:953.919618pt;}
.h10{height:0.000000pt;}
.h15{height:14.080000pt;}
.h18{height:14.240000pt;}
.h2{height:16.960000pt;}
.h16{height:27.730022pt;}
.hb{height:28.911745pt;}
.h17{height:34.104089pt;}
.h14{height:34.353753pt;}
.hf{height:35.871685pt;}
.h19{height:41.390063pt;}
.h13{height:41.570543pt;}
.h12{height:42.352623pt;}
.hc{height:44.440174pt;}
.he{height:52.700139pt;}
.h1{height:53.542379pt;}
.h9{height:55.527658pt;}
.h3{height:62.642684pt;}
.h11{height:62.827400pt;}
.ha{height:63.391674pt;}
.hd{height:64.031674pt;}
.h4{height:64.965391pt;}
.h7{height:71.211364pt;}
.h8{height:73.851785pt;}
.h5{height:80.313568pt;}
.h6{height:129.379443pt;}
.h0{height:1056.000000pt;}
.we{width:3.200000pt;}
.w14{width:3.360000pt;}
.w10{width:5.280000pt;}
.wa{width:5.600000pt;}
.wd{width:6.560000pt;}
.w1{width:6.720000pt;}
.w11{width:7.040000pt;}
.w5{width:7.520000pt;}
.w2{width:8.480000pt;}
.w4{width:11.680000pt;}
.w3{width:12.480000pt;}
.w8{width:15.040000pt;}
.w6{width:16.000000pt;}
.w7{width:20.000000pt;}
.w17{width:29.280000pt;}
.w13{width:31.360000pt;}
.wc{width:34.720000pt;}
.w16{width:55.520000pt;}
.w15{width:62.400000pt;}
.w18{width:69.280000pt;}
.w12{width:75.360000pt;}
.wb{width:87.360000pt;}
.wf{width:107.840000pt;}
.w9{width:236.800000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xb{left:141.119944pt;}
.x7{left:143.359943pt;}
.x17{left:163.679935pt;}
.xf{left:185.599926pt;}
.x9{left:187.839925pt;}
.x13{left:197.599921pt;}
.x8{left:211.679915pt;}
.x21{left:223.839910pt;}
.x15{left:229.919908pt;}
.x16{left:231.359947pt;}
.x2c{left:297.919881pt;}
.x2b{left:302.079879pt;}
.x6{left:307.199877pt;}
.x5{left:312.799875pt;}
.x4{left:323.359871pt;}
.xa{left:327.679869pt;}
.x2f{left:396.799841pt;}
.x3{left:407.519837pt;}
.x2e{left:432.319827pt;}
.x19{left:435.200000pt;}
.x18{left:436.960000pt;}
.x23{left:443.839822pt;}
.x2d{left:447.199821pt;}
.x32{left:475.040000pt;}
.x25{left:477.919809pt;}
.x1e{left:480.799808pt;}
.x33{left:481.920000pt;}
.x2a{left:486.399805pt;}
.x1f{left:487.679805pt;}
.x20{left:494.079802pt;}
.x28{left:495.679802pt;}
.x31{left:497.119801pt;}
.x27{left:507.359797pt;}
.x22{left:508.319797pt;}
.x1a{left:522.400000pt;}
.xd{left:524.639790pt;}
.x39{left:549.440000pt;}
.x1b{left:556.960000pt;}
.x3a{left:559.520000pt;}
.x1c{left:563.200000pt;}
.x34{left:564.160000pt;}
.x1d{left:566.400000pt;}
.x3b{left:588.640000pt;}
.x3c{left:591.840000pt;}
.x35{left:595.360000pt;}
.x36{left:598.400000pt;}
.x3d{left:601.280000pt;}
.x37{left:604.800000pt;}
.x38{left:608.000000pt;}
.x26{left:646.879741pt;}
.x1{left:651.519739pt;}
.x12{left:654.080000pt;}
.x11{left:658.080000pt;}
.x14{left:659.040000pt;}
.x30{left:659.999736pt;}
.x10{left:661.600000pt;}
.x3e{left:663.839734pt;}
.xe{left:665.600000pt;}
.x2{left:667.360000pt;}
.x24{left:669.759732pt;}
.xc{left:674.079730pt;}
.x29{left:675.520000pt;}
}




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