
    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_997ca64947e3568ff323215c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_7667560ab4f8430ffe864ae8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958008;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_0836c0e66427062e75b61813.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.958008;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_2ffc8ac3d0c4042ffdc9bb4a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.754395;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_edcddd0d4038f38b5386528d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.754395;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_997ca64947e3568ff323215c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.003906;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);}
.v4{vertical-align:-30.959947px;}
.v2{vertical-align:-29.519920px;}
.v5{vertical-align:-4.319815px;}
.v3{vertical-align:-2.879873px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:20.880194px;}
.v1{vertical-align:44.639900px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.072000px;}
.ls11{letter-spacing:0.174234px;}
.ls3{letter-spacing:0.221027px;}
.lse{letter-spacing:0.221033px;}
.ls10{letter-spacing:0.288053px;}
.ls7{letter-spacing:53.645470px;}
.lsc{letter-spacing:69.485514px;}
.ls5{letter-spacing:98.465364px;}
.ls9{letter-spacing:104.945450px;}
.ls8{letter-spacing:109.985413px;}
.ls4{letter-spacing:124.385341px;}
.lsf{letter-spacing:127.613921px;}
.lsd{letter-spacing:148.145234px;}
.lsa{letter-spacing:167.585305px;}
.ls6{letter-spacing:169.025247px;}
.lsb{letter-spacing:246.065031px;}
.ls2{letter-spacing:531.916316px;}
.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:-20.087950px;}
.ws4{word-spacing:-19.871950px;}
.ws3{word-spacing:-13.499102px;}
.ws2{word-spacing:-13.458926px;}
.ws1{word-spacing:-13.314207px;}
.ws0{word-spacing:0.000000px;}
._3f{margin-left:-5.747920px;}
._2{margin-left:-3.828296px;}
._6{margin-left:-2.231994px;}
._1{margin-left:-1.007997px;}
._0{width:1.439996px;}
._4{width:2.519994px;}
._c{width:3.671991px;}
._d{width:5.255987px;}
._27{width:6.263984px;}
._8{width:7.271982px;}
._7{width:8.711978px;}
._5{width:10.151975px;}
._11{width:11.231972px;}
._12{width:12.527969px;}
._23{width:13.895965px;}
._24{width:15.839960px;}
._2e{width:17.567956px;}
._1d{width:18.575954px;}
._3{width:21.815945px;}
._28{width:23.327942px;}
._b{width:24.839938px;}
._10{width:26.207934px;}
._20{width:27.215932px;}
._f{width:28.511929px;}
._18{width:29.591926px;}
._19{width:30.959923px;}
._39{width:31.967920px;}
._14{width:33.663747px;}
._9{width:34.775913px;}
._2d{width:35.855910px;}
._31{width:37.295907px;}
._33{width:39.023902px;}
._26{width:40.607898px;}
._22{width:42.335894px;}
._29{width:44.351889px;}
._21{width:46.007885px;}
._2a{width:47.087882px;}
._34{width:48.887878px;}
._35{width:49.967875px;}
._1f{width:51.911870px;}
._3a{width:53.423866px;}
._17{width:54.431864px;}
._16{width:55.799860px;}
._15{width:56.951858px;}
._1e{width:58.967853px;}
._2b{width:61.343847px;}
._1c{width:62.999842px;}
._30{width:65.303837px;}
._2c{width:67.175832px;}
._1a{width:69.047827px;}
._1b{width:70.199825px;}
._3e{width:73.151817px;}
._a{width:78.839803px;}
._36{width:79.847800px;}
._32{width:83.519791px;}
._37{width:84.815788px;}
._3d{width:86.111785px;}
._38{width:87.623781px;}
._e{width:88.991778px;}
._2f{width:90.071775px;}
._3c{width:91.151772px;}
._3b{width:93.829681px;}
._13{width:97.631756px;}
._25{width:101.303747px;}
.fc6{color:rgb(0,128,128);}
.fc5{color:rgb(13,119,110);}
.fc4{color:rgb(0,103,120);}
.fc3{color:rgb(33,37,41);}
.fc1{color:transparent;}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.239879px;}
.fs5{font-size:48.383879px;}
.fs0{font-size:59.759851px;}
.fs6{font-size:59.903850px;}
.fs3{font-size:66.239834px;}
.fs1{font-size:71.999820px;}
.fs2{font-size:72.143820px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.498183px;}
.y85{bottom:2.699975px;}
.yb7{bottom:8.999978px;}
.y3{bottom:23.759890px;}
.y31{bottom:29.879900px;}
.y30{bottom:51.839867px;}
.y4{bottom:54.359849px;}
.ye6{bottom:68.759777px;}
.y2f{bottom:73.289794px;}
.ya3{bottom:77.969777px;}
.y147{bottom:88.949760px;}
.y117{bottom:90.389789px;}
.ye5{bottom:90.929765px;}
.y2e{bottom:95.249762px;}
.ya2{bottom:100.109735px;}
.y82{bottom:101.909750px;}
.y146{bottom:110.909727px;}
.y116{bottom:112.349664px;}
.ye4{bottom:112.889733px;}
.y81{bottom:116.489668px;}
.y2d{bottom:117.389722px;}
.ya1{bottom:122.069702px;}
.y80{bottom:131.249672px;}
.y84{bottom:131.429664px;}
.y145{bottom:133.049685px;}
.y115{bottom:134.489623px;}
.ye3{bottom:135.029601px;}
.y2c{bottom:139.529590px;}
.ya0{bottom:144.209570px;}
.y7f{bottom:146.009584px;}
.y144{bottom:155.189554px;}
.y114{bottom:156.629583px;}
.ye2{bottom:157.169559px;}
.y7e{bottom:160.769588px;}
.y2b{bottom:161.489556px;}
.y83{bottom:164.549607px;}
.y9f{bottom:166.169537px;}
.y143{bottom:177.149521px;}
.y113{bottom:178.589551px;}
.ye1{bottom:179.129527px;}
.y7c{bottom:181.109532px;}
.y2a{bottom:183.629515px;}
.y9e{bottom:188.309496px;}
.y7b{bottom:195.869444px;}
.y142{bottom:199.289479px;}
.y112{bottom:200.729509px;}
.ye0{bottom:201.269486px;}
.y29{bottom:205.769475px;}
.y9d{bottom:210.449456px;}
.y7a{bottom:210.629448px;}
.y141{bottom:221.249447px;}
.y111{bottom:222.689385px;}
.ydf{bottom:223.229452px;}
.y79{bottom:225.389452px;}
.y7d{bottom:225.929428px;}
.y28{bottom:227.729441px;}
.y9c{bottom:232.409423px;}
.y78{bottom:242.669345px;}
.y140{bottom:244.109375px;}
.y110{bottom:244.829344px;}
.yde{bottom:245.369321px;}
.y27{bottom:249.869309px;}
.y73{bottom:250.049393px;}
.y9b{bottom:254.549382px;}
.y77{bottom:257.429349px;}
.y72{bottom:264.629313px;}
.y13f{bottom:265.529275px;}
.y10f{bottom:266.969304px;}
.ydd{bottom:267.509280px;}
.y26{bottom:271.829277px;}
.y76{bottom:272.009269px;}
.y9a{bottom:276.509258px;}
.y71{bottom:279.389317px;}
.y75{bottom:286.769273px;}
.y13e{bottom:287.489241px;}
.y10e{bottom:288.929270px;}
.ydc{bottom:289.469248px;}
.y25{bottom:293.969237px;}
.y70{bottom:294.329221px;}
.y99{bottom:298.649217px;}
.y74{bottom:302.249244px;}
.y13d{bottom:309.629200px;}
.y10d{bottom:311.069230px;}
.ydb{bottom:311.609206px;}
.y24{bottom:316.109195px;}
.y6c{bottom:318.629178px;}
.y98{bottom:320.789176px;}
.y6f{bottom:326.009134px;}
.y13c{bottom:331.769160px;}
.y10c{bottom:333.209098px;}
.y6b{bottom:333.389182px;}
.yda{bottom:333.749166px;}
.y23{bottom:338.069162px;}
.y6e{bottom:340.814089px;}
.y97{bottom:342.794095px;}
.y6a{bottom:348.194137px;}
.y13b{bottom:353.774080px;}
.y10b{bottom:355.214109px;}
.yd9{bottom:355.754085px;}
.y22{bottom:360.254074px;}
.y69{bottom:362.954049px;}
.y6d{bottom:363.494025px;}
.y96{bottom:364.934055px;}
.y13a{bottom:375.914038px;}
.y10a{bottom:377.354067px;}
.yd8{bottom:377.894045px;}
.y21{bottom:382.214041px;}
.y95{bottom:386.894022px;}
.y67{bottom:387.433998px;}
.y139{bottom:397.874005px;}
.y109{bottom:399.313943px;}
.yd7{bottom:399.854011px;}
.y66{bottom:402.194002px;}
.y20{bottom:404.354000px;}
.y94{bottom:409.033982px;}
.y65{bottom:416.953914px;}
.y138{bottom:420.013965px;}
.y108{bottom:421.453903px;}
.yd6{bottom:421.993879px;}
.y68{bottom:424.873938px;}
.y1f{bottom:426.493868px;}
.y93{bottom:431.173940px;}
.y63{bottom:441.433863px;}
.y137{bottom:442.153833px;}
.y107{bottom:443.593863px;}
.yd5{bottom:444.133839px;}
.y1e{bottom:448.453835px;}
.y92{bottom:453.133816px;}
.y62{bottom:456.193867px;}
.y136{bottom:464.113799px;}
.y106{bottom:465.553829px;}
.yd4{bottom:466.093806px;}
.y1d{bottom:470.593795px;}
.y61{bottom:470.953779px;}
.y91{bottom:475.273776px;}
.y60{bottom:485.713783px;}
.y64{bottom:486.253759px;}
.y105{bottom:487.693788px;}
.yd3{bottom:488.233764px;}
.y1c{bottom:492.553761px;}
.y90{bottom:497.413734px;}
.y135{bottom:508.213726px;}
.y104{bottom:509.653709px;}
.y5e{bottom:510.193686px;}
.y1b{bottom:514.693674px;}
.y8f{bottom:519.373657px;}
.y5d{bottom:524.773652px;}
.y134{bottom:530.353640px;}
.y103{bottom:531.793623px;}
.yd2{bottom:532.333645px;}
.y1a{bottom:536.833634px;}
.y5c{bottom:539.533609px;}
.y8e{bottom:541.513615px;}
.y133{bottom:552.493599px;}
.y102{bottom:553.933582px;}
.y5b{bottom:554.473605px;}
.y19{bottom:558.793555px;}
.y5f{bottom:562.213591px;}
.y8d{bottom:563.473582px;}
.y132{bottom:574.453520px;}
.y101{bottom:575.893550px;}
.yd1{bottom:576.433526px;}
.y59{bottom:578.773517px;}
.y18{bottom:580.933515px;}
.y8c{bottom:585.613495px;}
.y58{bottom:593.533474px;}
.y131{bottom:596.593480px;}
.y100{bottom:598.033463px;}
.yd0{bottom:598.573486px;}
.y17{bottom:602.893482px;}
.y8b{bottom:607.783439px;}
.y57{bottom:608.323461px;}
.y130{bottom:618.583430px;}
.yff{bottom:620.023414px;}
.ycf{bottom:620.563437px;}
.y56{bottom:623.083418px;}
.y5a{bottom:623.623396px;}
.y16{bottom:625.063425px;}
.y8a{bottom:629.743406px;}
.y54{bottom:640.363359px;}
.y12f{bottom:640.723389px;}
.yfe{bottom:642.163372px;}
.yce{bottom:642.703350px;}
.y15{bottom:647.203338px;}
.y89{bottom:651.883364px;}
.y53{bottom:654.943324px;}
.y12e{bottom:662.863302px;}
.yfd{bottom:664.303332px;}
.ycd{bottom:664.843309px;}
.y52{bottom:669.703282px;}
.y14{bottom:669.883319px;}
.y88{bottom:673.843287px;}
.y51{bottom:684.463286px;}
.y12d{bottom:684.823270px;}
.y55{bottom:685.183254px;}
.yfc{bottom:686.263253px;}
.ycc{bottom:686.803275px;}
.y13{bottom:691.303264px;}
.y87{bottom:695.983245px;}
.y4d{bottom:701.383241px;}
.y12c{bottom:706.963230px;}
.yfb{bottom:708.403212px;}
.ycb{bottom:708.943189px;}
.y12{bottom:713.443177px;}
.y4c{bottom:715.963207px;}
.y50{bottom:723.343163px;}
.y12b{bottom:728.923151px;}
.yfa{bottom:730.363134px;}
.y4b{bottom:730.723164px;}
.yca{bottom:730.903156px;}
.yb6{bottom:731.263140px;}
.y11{bottom:736.123115px;}
.y4f{bottom:738.103120px;}
.y4a{bottom:745.483121px;}
.y12a{bottom:751.063110px;}
.yf9{bottom:752.503093px;}
.y4e{bottom:752.863077px;}
.yc9{bottom:753.043069px;}
.yb5{bottom:753.223108px;}
.y10{bottom:757.543058px;}
.y49{bottom:760.243080px;}
.y129{bottom:773.203023px;}
.yf8{bottom:774.643053px;}
.y48{bottom:775.003037px;}
.yc8{bottom:775.183029px;}
.yb4{bottom:775.363021px;}
.yf{bottom:779.503026px;}
.y128{bottom:795.162990px;}
.yf7{bottom:796.602974px;}
.yc7{bottom:797.142997px;}
.yb3{bottom:797.502981px;}
.y47{bottom:798.402987px;}
.ye{bottom:802.362954px;}
.y42{bottom:805.782944px;}
.y46{bottom:813.162945px;}
.y127{bottom:817.302949px;}
.yf6{bottom:818.742934px;}
.yc6{bottom:819.282910px;}
.yb2{bottom:819.462948px;}
.y41{bottom:820.542901px;}
.yd{bottom:823.782899px;}
.y45{bottom:827.922903px;}
.y40{bottom:835.482896px;}
.y126{bottom:839.262870px;}
.yf5{bottom:840.702855px;}
.yc5{bottom:841.242877px;}
.yb1{bottom:841.602861px;}
.y44{bottom:842.682860px;}
.yc{bottom:846.462881px;}
.y3f{bottom:850.062863px;}
.y125{bottom:861.402830px;}
.yf4{bottom:862.842814px;}
.yc4{bottom:863.382836px;}
.yb0{bottom:863.562829px;}
.y43{bottom:864.822820px;}
.yb{bottom:868.602794px;}
.y124{bottom:883.587764px;}
.y3e{bottom:885.027771px;}
.yc3{bottom:885.567771px;}
.yaf{bottom:885.747763px;}
.ya{bottom:889.887744px;}
.y3a{bottom:904.827717px;}
.y123{bottom:905.547709px;}
.yf3{bottom:906.987715px;}
.yc2{bottom:907.527715px;}
.yae{bottom:907.887699px;}
.y9{bottom:912.027703px;}
.y3d{bottom:912.207695px;}
.y39{bottom:919.587674px;}
.y3c{bottom:926.967654px;}
.y122{bottom:927.687645px;}
.yf2{bottom:929.127652px;}
.yc1{bottom:929.667652px;}
.yad{bottom:929.847644px;}
.y8{bottom:934.167641px;}
.y38{bottom:934.347633px;}
.y3b{bottom:941.727611px;}
.y37{bottom:949.107612px;}
.y121{bottom:949.827604px;}
.yf1{bottom:951.267589px;}
.yc0{bottom:951.807587px;}
.yac{bottom:951.987602px;}
.y7{bottom:956.127584px;}
.y36{bottom:963.867571px;}
.y120{bottom:971.787548px;}
.yf0{bottom:973.227532px;}
.ybf{bottom:973.767533px;}
.yab{bottom:973.947547px;}
.y6{bottom:978.267521px;}
.y35{bottom:980.067535px;}
.y11f{bottom:993.927485px;}
.yef{bottom:995.367492px;}
.ybe{bottom:995.907491px;}
.yaa{bottom:996.087483px;}
.y5{bottom:1000.947480px;}
.y34{bottom:1003.107477px;}
.y11e{bottom:1015.887429px;}
.yee{bottom:1017.327436px;}
.y33{bottom:1017.867436px;}
.y32{bottom:1021.467418px;}
.ya9{bottom:1030.107410px;}
.y11d{bottom:1038.027388px;}
.yed{bottom:1039.467373px;}
.ybd{bottom:1040.007371px;}
.y11c{bottom:1060.167326px;}
.yec{bottom:1061.607331px;}
.ybc{bottom:1062.147309px;}
.ya8{bottom:1065.027321px;}
.y11b{bottom:1082.127269px;}
.yeb{bottom:1083.567264px;}
.ybb{bottom:1084.107264px;}
.ya7{bottom:1086.987254px;}
.y11a{bottom:1104.267217px;}
.yea{bottom:1105.707212px;}
.yba{bottom:1106.247212px;}
.ya6{bottom:1109.127202px;}
.y119{bottom:1126.221165px;}
.ye9{bottom:1127.661160px;}
.yb9{bottom:1128.201158px;}
.ya5{bottom:1130.361146px;}
.y118{bottom:1148.397104px;}
.ye8{bottom:1149.837098px;}
.yb8{bottom:1150.377099px;}
.ya4{bottom:1153.257088px;}
.ye7{bottom:1156.497086px;}
.y86{bottom:1219.856925px;}
.y2{bottom:1234.076888px;}
.h7{height:36.179910px;}
.h8{height:36.287909px;}
.h9{height:48.774253px;}
.ha{height:53.015492px;}
.h4{height:53.999865px;}
.h5{height:54.107865px;}
.h3{height:59.438875px;}
.hd{height:59.582101px;}
.hc{height:69.654447px;}
.hb{height:71.613102px;}
.h6{height:80.819810px;}
.h2{height:1262.876798px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w1{width:892.977765px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:22.679930px;}
.x14{left:24.659926px;}
.x11{left:26.639920px;}
.x15{left:29.339912px;}
.x13{left:30.599910px;}
.x18{left:31.859907px;}
.x10{left:37.439891px;}
.x16{left:44.459874px;}
.x1{left:46.799871px;}
.x12{left:48.599868px;}
.x19{left:55.079850px;}
.x6{left:59.219838px;}
.x1a{left:64.799826px;}
.x54{left:67.859820px;}
.x55{left:68.939813px;}
.x4d{left:70.379808px;}
.x4b{left:82.079783px;}
.xd{left:104.615729px;}
.xa{left:108.935716px;}
.xb{left:115.775694px;}
.xc{left:127.115673px;}
.xf{left:129.815660px;}
.x4{left:134.855648px;}
.x8{left:136.115651px;}
.xe{left:139.175634px;}
.x3{left:142.415630px;}
.x9{left:143.675623px;}
.x7{left:151.409611px;}
.x5{left:180.389539px;}
.x53{left:272.369309px;}
.x4c{left:307.154225px;}
.x52{left:322.094175px;}
.x42{left:366.914071px;}
.x2e{left:368.714062px;}
.x38{left:370.334059px;}
.x3b{left:372.494058px;}
.x22{left:374.114057px;}
.x45{left:376.094040px;}
.x1f{left:377.354054px;}
.x1b{left:378.614046px;}
.x21{left:380.054029px;}
.x34{left:381.314044px;}
.x48{left:382.934019px;}
.x1d{left:384.554018px;}
.x33{left:386.534023px;}
.x47{left:391.934020px;}
.x29{left:393.733987px;}
.x28{left:396.793993px;}
.x3c{left:399.493968px;}
.x37{left:402.013996px;}
.x50{left:412.993935px;}
.x2c{left:416.413923px;}
.x49{left:420.733920px;}
.x39{left:422.893919px;}
.x20{left:424.873924px;}
.x2d{left:438.553883px;}
.x56{left:460.873834px;}
.x2f{left:462.313817px;}
.x2{left:471.343825px;}
.x57{left:481.963779px;}
.x4e{left:483.403761px;}
.x27{left:576.463542px;}
.x1c{left:577.723533px;}
.x1e{left:616.963441px;}
.x23{left:627.583440px;}
.x2a{left:644.323358px;}
.x35{left:645.583395px;}
.x3d{left:646.663347px;}
.x2b{left:648.643354px;}
.x31{left:651.343375px;}
.x36{left:652.603365px;}
.x25{left:655.168347px;}
.x3f{left:657.688329px;}
.x43{left:658.768329px;}
.x4f{left:660.028320px;}
.x32{left:663.088326px;}
.x46{left:667.408321px;}
.x30{left:670.288288px;}
.x3e{left:672.448287px;}
.x44{left:678.568298px;}
.x41{left:688.468282px;}
.x24{left:693.868232px;}
.x40{left:707.368199px;}
.x26{left:730.588157px;}
.x3a{left:738.868120px;}
.x4a{left:755.428090px;}
.x51{left:844.737834px;}
@media print{
.v4{vertical-align:-27.519953pt;}
.v2{vertical-align:-26.239929pt;}
.v5{vertical-align:-3.839836pt;}
.v3{vertical-align:-2.559887pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:18.560172pt;}
.v1{vertical-align:39.679911pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.064000pt;}
.ls11{letter-spacing:0.154874pt;}
.ls3{letter-spacing:0.196469pt;}
.lse{letter-spacing:0.196474pt;}
.ls10{letter-spacing:0.256047pt;}
.ls7{letter-spacing:47.684862pt;}
.lsc{letter-spacing:61.764902pt;}
.ls5{letter-spacing:87.524768pt;}
.ls9{letter-spacing:93.284844pt;}
.ls8{letter-spacing:97.764812pt;}
.ls4{letter-spacing:110.564748pt;}
.lsf{letter-spacing:113.434596pt;}
.lsd{letter-spacing:131.684652pt;}
.lsa{letter-spacing:148.964716pt;}
.ls6{letter-spacing:150.244664pt;}
.lsb{letter-spacing:218.724472pt;}
.ls2{letter-spacing:472.814503pt;}
.ws5{word-spacing:-17.855955pt;}
.ws4{word-spacing:-17.663956pt;}
.ws3{word-spacing:-11.999202pt;}
.ws2{word-spacing:-11.963490pt;}
.ws1{word-spacing:-11.834850pt;}
.ws0{word-spacing:0.000000pt;}
._3f{margin-left:-5.109262pt;}
._2{margin-left:-3.402930pt;}
._6{margin-left:-1.983995pt;}
._1{margin-left:-0.895998pt;}
._0{width:1.279997pt;}
._4{width:2.239994pt;}
._c{width:3.263992pt;}
._d{width:4.671988pt;}
._27{width:5.567986pt;}
._8{width:6.463984pt;}
._7{width:7.743981pt;}
._5{width:9.023977pt;}
._11{width:9.983975pt;}
._12{width:11.135972pt;}
._23{width:12.351969pt;}
._24{width:14.079965pt;}
._2e{width:15.615961pt;}
._1d{width:16.511959pt;}
._3{width:19.391952pt;}
._28{width:20.735948pt;}
._b{width:22.079945pt;}
._10{width:23.295942pt;}
._20{width:24.191940pt;}
._f{width:25.343937pt;}
._18{width:26.303934pt;}
._19{width:27.519931pt;}
._39{width:28.415929pt;}
._14{width:29.923330pt;}
._9{width:30.911923pt;}
._2d{width:31.871920pt;}
._31{width:33.151917pt;}
._33{width:34.687913pt;}
._26{width:36.095910pt;}
._22{width:37.631906pt;}
._29{width:39.423901pt;}
._21{width:40.895898pt;}
._2a{width:41.855895pt;}
._34{width:43.455891pt;}
._35{width:44.415889pt;}
._1f{width:46.143885pt;}
._3a{width:47.487881pt;}
._17{width:48.383879pt;}
._16{width:49.599876pt;}
._15{width:50.623873pt;}
._1e{width:52.415869pt;}
._2b{width:54.527864pt;}
._1c{width:55.999860pt;}
._30{width:58.047855pt;}
._2c{width:59.711851pt;}
._1a{width:61.375847pt;}
._1b{width:62.399844pt;}
._3e{width:65.023837pt;}
._a{width:70.079825pt;}
._36{width:70.975823pt;}
._32{width:74.239814pt;}
._37{width:75.391812pt;}
._3d{width:76.543809pt;}
._38{width:77.887805pt;}
._e{width:79.103802pt;}
._2f{width:80.063800pt;}
._3c{width:81.023797pt;}
._3b{width:83.404161pt;}
._13{width:86.783783pt;}
._25{width:90.047775pt;}
.fs4{font-size:42.879893pt;}
.fs5{font-size:43.007892pt;}
.fs0{font-size:53.119867pt;}
.fs6{font-size:53.247867pt;}
.fs3{font-size:58.879853pt;}
.fs1{font-size:63.999840pt;}
.fs2{font-size:64.127840pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.442829pt;}
.y85{bottom:2.399978pt;}
.yb7{bottom:7.999980pt;}
.y3{bottom:21.119902pt;}
.y31{bottom:26.559911pt;}
.y30{bottom:46.079882pt;}
.y4{bottom:48.319866pt;}
.ye6{bottom:61.119802pt;}
.y2f{bottom:65.146484pt;}
.ya3{bottom:69.306468pt;}
.y147{bottom:79.066453pt;}
.y117{bottom:80.346479pt;}
.ye5{bottom:80.826458pt;}
.y2e{bottom:84.666455pt;}
.ya2{bottom:88.986431pt;}
.y82{bottom:90.586444pt;}
.y146{bottom:98.586424pt;}
.y116{bottom:99.866368pt;}
.ye4{bottom:100.346429pt;}
.y81{bottom:103.546372pt;}
.y2d{bottom:104.346419pt;}
.ya1{bottom:108.506402pt;}
.y80{bottom:116.666375pt;}
.y84{bottom:116.826368pt;}
.y145{bottom:118.266387pt;}
.y115{bottom:119.546332pt;}
.ye3{bottom:120.026312pt;}
.y2c{bottom:124.026302pt;}
.ya0{bottom:128.186285pt;}
.y7f{bottom:129.786297pt;}
.y144{bottom:137.946270pt;}
.y114{bottom:139.226296pt;}
.ye2{bottom:139.706275pt;}
.y7e{bottom:142.906300pt;}
.y2b{bottom:143.546272pt;}
.y83{bottom:146.266317pt;}
.y9f{bottom:147.706255pt;}
.y143{bottom:157.466241pt;}
.y113{bottom:158.746267pt;}
.ye1{bottom:159.226246pt;}
.y7c{bottom:160.986251pt;}
.y2a{bottom:163.226236pt;}
.y9e{bottom:167.386219pt;}
.y7b{bottom:174.106173pt;}
.y142{bottom:177.146204pt;}
.y112{bottom:178.426230pt;}
.ye0{bottom:178.906210pt;}
.y29{bottom:182.906200pt;}
.y9d{bottom:187.066183pt;}
.y7a{bottom:187.226176pt;}
.y141{bottom:196.666175pt;}
.y111{bottom:197.946120pt;}
.ydf{bottom:198.426180pt;}
.y79{bottom:200.346179pt;}
.y7d{bottom:200.826158pt;}
.y28{bottom:202.426170pt;}
.y9c{bottom:206.586154pt;}
.y78{bottom:215.706085pt;}
.y140{bottom:216.986111pt;}
.y110{bottom:217.626084pt;}
.yde{bottom:218.106063pt;}
.y27{bottom:222.106053pt;}
.y73{bottom:222.266127pt;}
.y9b{bottom:226.266117pt;}
.y77{bottom:228.826088pt;}
.y72{bottom:235.226056pt;}
.y13f{bottom:236.026022pt;}
.y10f{bottom:237.306048pt;}
.ydd{bottom:237.786027pt;}
.y26{bottom:241.626024pt;}
.y76{bottom:241.786017pt;}
.y9a{bottom:245.786007pt;}
.y71{bottom:248.346059pt;}
.y75{bottom:254.906020pt;}
.y13e{bottom:255.545992pt;}
.y10e{bottom:256.826018pt;}
.ydc{bottom:257.305998pt;}
.y25{bottom:261.305988pt;}
.y70{bottom:261.625974pt;}
.y99{bottom:265.465971pt;}
.y74{bottom:268.665995pt;}
.y13d{bottom:275.225956pt;}
.y10d{bottom:276.505982pt;}
.ydb{bottom:276.985961pt;}
.y24{bottom:280.985951pt;}
.y6c{bottom:283.225936pt;}
.y98{bottom:285.145934pt;}
.y6f{bottom:289.785897pt;}
.y13c{bottom:294.905920pt;}
.y10c{bottom:296.185865pt;}
.y6b{bottom:296.345939pt;}
.yda{bottom:296.665925pt;}
.y23{bottom:300.505922pt;}
.y6e{bottom:302.945857pt;}
.y97{bottom:304.705862pt;}
.y6a{bottom:309.505900pt;}
.y13b{bottom:314.465849pt;}
.y10b{bottom:315.745875pt;}
.yd9{bottom:316.225853pt;}
.y22{bottom:320.225843pt;}
.y69{bottom:322.625821pt;}
.y6d{bottom:323.105800pt;}
.y96{bottom:324.385826pt;}
.y13a{bottom:334.145811pt;}
.y10a{bottom:335.425837pt;}
.yd8{bottom:335.905818pt;}
.y21{bottom:339.745815pt;}
.y95{bottom:343.905798pt;}
.y67{bottom:344.385776pt;}
.y139{bottom:353.665783pt;}
.y109{bottom:354.945727pt;}
.yd7{bottom:355.425787pt;}
.y66{bottom:357.505780pt;}
.y20{bottom:359.425777pt;}
.y94{bottom:363.585762pt;}
.y65{bottom:370.625701pt;}
.y138{bottom:373.345747pt;}
.y108{bottom:374.625691pt;}
.yd6{bottom:375.105670pt;}
.y68{bottom:377.665723pt;}
.y1f{bottom:379.105660pt;}
.y93{bottom:383.265724pt;}
.y63{bottom:392.385656pt;}
.y137{bottom:393.025629pt;}
.y107{bottom:394.305656pt;}
.yd5{bottom:394.785634pt;}
.y1e{bottom:398.625631pt;}
.y92{bottom:402.785614pt;}
.y62{bottom:405.505660pt;}
.y136{bottom:412.545599pt;}
.y106{bottom:413.825625pt;}
.yd4{bottom:414.305606pt;}
.y1d{bottom:418.305596pt;}
.y61{bottom:418.625581pt;}
.y91{bottom:422.465579pt;}
.y60{bottom:431.745585pt;}
.y64{bottom:432.225563pt;}
.y105{bottom:433.505590pt;}
.yd3{bottom:433.985568pt;}
.y1c{bottom:437.825565pt;}
.y90{bottom:442.145541pt;}
.y135{bottom:451.745535pt;}
.y104{bottom:453.025519pt;}
.y5e{bottom:453.505498pt;}
.y1b{bottom:457.505488pt;}
.y8f{bottom:461.665473pt;}
.y5d{bottom:466.465469pt;}
.y134{bottom:471.425457pt;}
.y103{bottom:472.705442pt;}
.yd2{bottom:473.185462pt;}
.y1a{bottom:477.185452pt;}
.y5c{bottom:479.585430pt;}
.y8e{bottom:481.345435pt;}
.y133{bottom:491.105422pt;}
.y102{bottom:492.385406pt;}
.y5b{bottom:492.865427pt;}
.y19{bottom:496.705382pt;}
.y5f{bottom:499.745415pt;}
.y8d{bottom:500.865407pt;}
.y132{bottom:510.625351pt;}
.y101{bottom:511.905378pt;}
.yd1{bottom:512.385356pt;}
.y59{bottom:514.465349pt;}
.y18{bottom:516.385346pt;}
.y8c{bottom:520.545329pt;}
.y58{bottom:527.585310pt;}
.y131{bottom:530.305316pt;}
.y100{bottom:531.585300pt;}
.yd0{bottom:532.065321pt;}
.y17{bottom:535.905318pt;}
.y8b{bottom:540.251945pt;}
.y57{bottom:540.731966pt;}
.y130{bottom:549.851937pt;}
.yff{bottom:551.131924pt;}
.ycf{bottom:551.611944pt;}
.y56{bottom:553.851927pt;}
.y5a{bottom:554.331908pt;}
.y16{bottom:555.611934pt;}
.y8a{bottom:559.771917pt;}
.y54{bottom:569.211874pt;}
.y12f{bottom:569.531902pt;}
.yfe{bottom:570.811886pt;}
.yce{bottom:571.291866pt;}
.y15{bottom:575.291856pt;}
.y89{bottom:579.451879pt;}
.y53{bottom:582.171843pt;}
.y12e{bottom:589.211824pt;}
.yfd{bottom:590.491850pt;}
.ycd{bottom:590.971831pt;}
.y52{bottom:595.291806pt;}
.y14{bottom:595.451839pt;}
.y88{bottom:598.971811pt;}
.y51{bottom:608.411810pt;}
.y12d{bottom:608.731796pt;}
.y55{bottom:609.051781pt;}
.yfc{bottom:610.011780pt;}
.ycc{bottom:610.491800pt;}
.y13{bottom:614.491790pt;}
.y87{bottom:618.651773pt;}
.y4d{bottom:623.451769pt;}
.y12c{bottom:628.411760pt;}
.yfb{bottom:629.691744pt;}
.ycb{bottom:630.171723pt;}
.y12{bottom:634.171713pt;}
.y4c{bottom:636.411740pt;}
.y50{bottom:642.971701pt;}
.y12b{bottom:647.931690pt;}
.yfa{bottom:649.211674pt;}
.y4b{bottom:649.531702pt;}
.yca{bottom:649.691694pt;}
.yb6{bottom:650.011680pt;}
.y11{bottom:654.331658pt;}
.y4f{bottom:656.091662pt;}
.y4a{bottom:662.651663pt;}
.y12a{bottom:667.611654pt;}
.yf9{bottom:668.891638pt;}
.y4e{bottom:669.211624pt;}
.yc9{bottom:669.371617pt;}
.yb5{bottom:669.531652pt;}
.y10{bottom:673.371607pt;}
.y49{bottom:675.771627pt;}
.y129{bottom:687.291576pt;}
.yf8{bottom:688.571603pt;}
.y48{bottom:688.891588pt;}
.yc8{bottom:689.051581pt;}
.yb4{bottom:689.211574pt;}
.yf{bottom:692.891578pt;}
.y128{bottom:706.811546pt;}
.yf7{bottom:708.091532pt;}
.yc7{bottom:708.571553pt;}
.yb3{bottom:708.891538pt;}
.y47{bottom:709.691544pt;}
.ye{bottom:713.211514pt;}
.y42{bottom:716.251505pt;}
.y46{bottom:722.811506pt;}
.y127{bottom:726.491510pt;}
.yf6{bottom:727.771497pt;}
.yc6{bottom:728.251475pt;}
.yb2{bottom:728.411510pt;}
.y41{bottom:729.371467pt;}
.yd{bottom:732.251465pt;}
.y45{bottom:735.931470pt;}
.y40{bottom:742.651463pt;}
.y126{bottom:746.011440pt;}
.yf5{bottom:747.291426pt;}
.yc5{bottom:747.771447pt;}
.yb1{bottom:748.091432pt;}
.y44{bottom:749.051431pt;}
.yc{bottom:752.411450pt;}
.y3f{bottom:755.611434pt;}
.y125{bottom:765.691404pt;}
.yf4{bottom:766.971391pt;}
.yc4{bottom:767.451409pt;}
.yb0{bottom:767.611404pt;}
.y43{bottom:768.731396pt;}
.yb{bottom:772.091372pt;}
.y124{bottom:785.411346pt;}
.y3e{bottom:786.691352pt;}
.yc3{bottom:787.171352pt;}
.yaf{bottom:787.331345pt;}
.ya{bottom:791.011328pt;}
.y3a{bottom:804.291304pt;}
.y123{bottom:804.931297pt;}
.yf3{bottom:806.211302pt;}
.yc2{bottom:806.691302pt;}
.yae{bottom:807.011288pt;}
.y9{bottom:810.691292pt;}
.y3d{bottom:810.851285pt;}
.y39{bottom:817.411266pt;}
.y3c{bottom:823.971248pt;}
.y122{bottom:824.611240pt;}
.yf2{bottom:825.891246pt;}
.yc1{bottom:826.371246pt;}
.yad{bottom:826.531239pt;}
.y8{bottom:830.371236pt;}
.y38{bottom:830.531229pt;}
.y3b{bottom:837.091210pt;}
.y37{bottom:843.651211pt;}
.y121{bottom:844.291204pt;}
.yf1{bottom:845.571190pt;}
.yc0{bottom:846.051189pt;}
.yac{bottom:846.211202pt;}
.y7{bottom:849.891186pt;}
.y36{bottom:856.771174pt;}
.y120{bottom:863.811154pt;}
.yf0{bottom:865.091140pt;}
.ybf{bottom:865.571140pt;}
.yab{bottom:865.731153pt;}
.y6{bottom:869.571130pt;}
.y35{bottom:871.171142pt;}
.y11f{bottom:883.491098pt;}
.yef{bottom:884.771104pt;}
.ybe{bottom:885.251103pt;}
.yaa{bottom:885.411096pt;}
.y5{bottom:889.731093pt;}
.y34{bottom:891.651091pt;}
.y11e{bottom:903.011048pt;}
.yee{bottom:904.291054pt;}
.y33{bottom:904.771054pt;}
.y32{bottom:907.971038pt;}
.ya9{bottom:915.651031pt;}
.y11d{bottom:922.691012pt;}
.yed{bottom:923.970998pt;}
.ybd{bottom:924.450997pt;}
.y11c{bottom:942.370956pt;}
.yec{bottom:943.650961pt;}
.ybc{bottom:944.130941pt;}
.ya8{bottom:946.690952pt;}
.y11b{bottom:961.890906pt;}
.yeb{bottom:963.170901pt;}
.ybb{bottom:963.650902pt;}
.ya7{bottom:966.210892pt;}
.y11a{bottom:981.570859pt;}
.yea{bottom:982.850855pt;}
.yba{bottom:983.330855pt;}
.ya6{bottom:985.890846pt;}
.y119{bottom:1001.085480pt;}
.ye9{bottom:1002.365475pt;}
.yb9{bottom:1002.845474pt;}
.ya5{bottom:1004.765463pt;}
.y118{bottom:1020.797425pt;}
.ye8{bottom:1022.077421pt;}
.yb8{bottom:1022.557421pt;}
.ya4{bottom:1025.117412pt;}
.ye7{bottom:1027.997410pt;}
.y86{bottom:1084.317267pt;}
.y2{bottom:1096.957234pt;}
.h7{height:32.159920pt;}
.h8{height:32.255919pt;}
.h9{height:43.354892pt;}
.ha{height:47.124882pt;}
.h4{height:47.999880pt;}
.h5{height:48.095880pt;}
.h3{height:52.834555pt;}
.hd{height:52.961868pt;}
.hc{height:61.915064pt;}
.hb{height:63.656091pt;}
.h6{height:71.839831pt;}
.h2{height:1122.557154pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w1{width:793.758013pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:20.159938pt;}
.x14{left:21.919935pt;}
.x11{left:23.679929pt;}
.x15{left:26.079921pt;}
.x13{left:27.199920pt;}
.x18{left:28.319917pt;}
.x10{left:33.279903pt;}
.x16{left:39.519888pt;}
.x1{left:41.599885pt;}
.x12{left:43.199883pt;}
.x19{left:48.959867pt;}
.x6{left:52.639856pt;}
.x1a{left:57.599845pt;}
.x54{left:60.319840pt;}
.x55{left:61.279833pt;}
.x4d{left:62.559829pt;}
.x4b{left:72.959807pt;}
.xd{left:92.991760pt;}
.xa{left:96.831747pt;}
.xb{left:102.911728pt;}
.xc{left:112.991710pt;}
.xf{left:115.391698pt;}
.x4{left:119.871687pt;}
.x8{left:120.991690pt;}
.xe{left:123.711675pt;}
.x3{left:126.591672pt;}
.x9{left:127.711665pt;}
.x7{left:134.586321pt;}
.x5{left:160.346256pt;}
.x53{left:242.106052pt;}
.x4c{left:273.025977pt;}
.x52{left:286.305934pt;}
.x42{left:326.145841pt;}
.x2e{left:327.745833pt;}
.x38{left:329.185830pt;}
.x3b{left:331.105830pt;}
.x22{left:332.545829pt;}
.x45{left:334.305814pt;}
.x1f{left:335.425825pt;}
.x1b{left:336.545819pt;}
.x21{left:337.825803pt;}
.x34{left:338.945817pt;}
.x48{left:340.385794pt;}
.x1d{left:341.825793pt;}
.x33{left:343.585798pt;}
.x47{left:348.385796pt;}
.x29{left:349.985766pt;}
.x28{left:352.705772pt;}
.x3c{left:355.105750pt;}
.x37{left:357.345775pt;}
.x50{left:367.105720pt;}
.x2c{left:370.145709pt;}
.x49{left:373.985706pt;}
.x39{left:375.905706pt;}
.x20{left:377.665711pt;}
.x2d{left:389.825673pt;}
.x56{left:409.665631pt;}
.x2f{left:410.945615pt;}
.x2{left:418.972289pt;}
.x57{left:428.412248pt;}
.x4e{left:429.692232pt;}
.x27{left:512.412038pt;}
.x1c{left:513.532030pt;}
.x1e{left:548.411948pt;}
.x23{left:557.851947pt;}
.x2a{left:572.731874pt;}
.x35{left:573.851907pt;}
.x3d{left:574.811864pt;}
.x2b{left:576.571871pt;}
.x31{left:578.971889pt;}
.x36{left:580.091880pt;}
.x25{left:582.371864pt;}
.x3f{left:584.611848pt;}
.x43{left:585.571848pt;}
.x4f{left:586.691840pt;}
.x32{left:589.411845pt;}
.x46{left:593.251841pt;}
.x30{left:595.811812pt;}
.x3e{left:597.731811pt;}
.x44{left:603.171820pt;}
.x41{left:611.971806pt;}
.x24{left:616.771762pt;}
.x40{left:628.771732pt;}
.x26{left:649.411695pt;}
.x3a{left:656.771662pt;}
.x4a{left:671.491636pt;}
.x51{left:750.878075pt;}
}




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