
    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_b2310de69ffab25287a6a6b8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.675781;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_cef2b1518def215078e90baa.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_72085ededa440121719fceb5.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_e3fb9900baffb7eba6f70f53.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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;}
.m4{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.010553px;}
.ls6{letter-spacing:0.021282px;}
.ls9{letter-spacing:0.168496px;}
.ls5{letter-spacing:0.182640px;}
.ls3{letter-spacing:0.189300px;}
.ls2{letter-spacing:0.378602px;}
.ls4{letter-spacing:1.623539px;}
.ls8{letter-spacing:4.505278px;}
.lsa{letter-spacing:5.952838px;}
.ls0{letter-spacing:34.015846px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-18.021275px;}
.ws0{word-spacing:-17.999993px;}
.ws3{word-spacing:-15.318596px;}
.ws2{word-spacing:-14.939994px;}
.ws4{word-spacing:-12.059995px;}
.ws6{word-spacing:-9.719996px;}
.ws7{word-spacing:-8.786876px;}
.ws1{word-spacing:0.000000px;}
._1b{margin-left:-9.855080px;}
._12{margin-left:-4.605143px;}
._11{margin-left:-3.583215px;}
._e{margin-left:-2.207291px;}
._1{margin-left:-1.050545px;}
._0{width:1.324232px;}
._8{width:2.639677px;}
._c{width:3.724041px;}
._d{width:4.807521px;}
._17{width:5.812951px;}
._15{width:7.114693px;}
._f{width:8.253438px;}
._2{width:9.937075px;}
._3{width:11.208059px;}
._16{width:13.105310px;}
._9{width:14.273870px;}
._a{width:15.430991px;}
._10{width:16.594535px;}
._1c{width:19.194560px;}
._19{width:20.862777px;}
._18{width:21.931629px;}
._13{width:23.820127px;}
._14{width:24.828746px;}
._21{width:26.472430px;}
._7{width:28.050460px;}
._20{width:29.522111px;}
._4{width:32.582048px;}
._6{width:33.603462px;}
._5{width:34.606191px;}
._1a{width:37.504626px;}
._b{width:39.260805px;}
._1e{width:72.721276px;}
._1f{width:194.525202px;}
._1d{width:197.590385px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.879984px;}
.fs3{font-size:48.239981px;}
.fs5{font-size:59.759976px;}
.fs0{font-size:66.239974px;}
.fs2{font-size:71.999971px;}
.fs1{font-size:95.759962px;}
.y0{bottom:0.000000px;}
.y2{bottom:57.900277px;}
.y1{bottom:78.060269px;}
.y108{bottom:110.099956px;}
.y86{bottom:110.459956px;}
.yd9{bottom:110.460256px;}
.y2b{bottom:110.819956px;}
.yd8{bottom:115.680254px;}
.yb7{bottom:119.099952px;}
.y146{bottom:119.100252px;}
.y5b{bottom:123.600251px;}
.y145{bottom:124.320250px;}
.y107{bottom:127.379949px;}
.yd7{bottom:129.360248px;}
.y2a{bottom:133.139947px;}
.yb6{bottom:136.379945px;}
.y144{bottom:137.280245px;}
.y85{bottom:137.459945px;}
.y5a{bottom:142.140243px;}
.y106{bottom:144.659942px;}
.yb5{bottom:153.659939px;}
.y84{bottom:154.739938px;}
.y29{bottom:155.459938px;}
.yd6{bottom:158.519937px;}
.yb4{bottom:158.879936px;}
.y59{bottom:160.679936px;}
.y105{bottom:161.939935px;}
.y121{bottom:172.019931px;}
.y28{bottom:177.779929px;}
.y104{bottom:179.219928px;}
.y58{bottom:179.399928px;}
.yb3{bottom:179.939928px;}
.yd5{bottom:180.839928px;}
.y83{bottom:181.019928px;}
.y120{bottom:189.299924px;}
.y103{bottom:196.679921px;}
.yb2{bottom:197.219921px;}
.y57{bottom:197.939921px;}
.y27{bottom:200.099920px;}
.y102{bottom:201.899919px;}
.y56{bottom:203.159919px;}
.y11f{bottom:206.399917px;}
.y82{bottom:207.299917px;}
.y11e{bottom:211.619915px;}
.yb1{bottom:214.679914px;}
.yb0{bottom:219.899912px;}
.y143{bottom:222.599911px;}
.y101{bottom:223.679911px;}
.y55{bottom:224.219910px;}
.y81{bottom:224.399910px;}
.yd4{bottom:225.479910px;}
.y26{bottom:229.979908px;}
.y11d{bottom:232.679907px;}
.y100{bottom:240.959904px;}
.y54{bottom:241.499903px;}
.yaf{bottom:241.679903px;}
.yff{bottom:246.179902px;}
.yae{bottom:246.899901px;}
.y11c{bottom:249.959900px;}
.y25{bottom:250.679900px;}
.y142{bottom:252.299899px;}
.y53{bottom:258.779896px;}
.yad{bottom:259.859896px;}
.yd3{bottom:260.039896px;}
.yfe{bottom:267.239893px;}
.y24{bottom:271.379891px;}
.yfd{bottom:272.459891px;}
.y141{bottom:272.999891px;}
.y52{bottom:276.059890px;}
.y80{bottom:276.959889px;}
.y51{bottom:281.279887px;}
.yd2{bottom:282.179887px;}
.y11b{bottom:285.419886px;}
.y23{bottom:292.079883px;}
.yfc{bottom:293.519883px;}
.y140{bottom:293.699883px;}
.y50{bottom:294.239882px;}
.yab{bottom:296.579881px;}
.y7f{bottom:303.239879px;}
.yac{bottom:303.419879px;}
.yd1{bottom:304.499878px;}
.yfb{bottom:310.799876px;}
.y22{bottom:312.779875px;}
.yfa{bottom:316.019874px;}
.yaa{bottom:318.539873px;}
.y4f{bottom:319.259872px;}
.y13f{bottom:327.719869px;}
.y7e{bottom:329.519868px;}
.y21{bottom:333.479867px;}
.yf9{bottom:336.899865px;}
.ya9{bottom:340.859864px;}
.y4e{bottom:341.579863px;}
.yd0{bottom:343.199863px;}
.y11a{bottom:352.019859px;}
.y20{bottom:354.179858px;}
.y7d{bottom:355.799858px;}
.y13e{bottom:362.459855px;}
.ya8{bottom:363.179855px;}
.y4d{bottom:363.899854px;}
.yf8{bottom:371.459851px;}
.y7c{bottom:372.899851px;}
.y119{bottom:374.159850px;}
.ycf{bottom:383.699847px;}
.y1f{bottom:383.879846px;}
.y4c{bottom:386.219846px;}
.yf7{bottom:388.739845px;}
.y7b{bottom:390.179844px;}
.yf6{bottom:393.959842px;}
.y118{bottom:396.659841px;}
.y13d{bottom:396.839841px;}
.ya7{bottom:398.099841px;}
.y1e{bottom:404.579838px;}
.yce{bottom:406.199838px;}
.yf5{bottom:415.019834px;}
.y7a{bottom:416.459833px;}
.y117{bottom:418.979832px;}
.y4b{bottom:420.779832px;}
.y1d{bottom:425.279830px;}
.ycd{bottom:428.699829px;}
.ya6{bottom:432.299827px;}
.y116{bottom:441.299823px;}
.y79{bottom:442.739823px;}
.y4a{bottom:442.919823px;}
.y1c{bottom:445.979822px;}
.y78{bottom:447.959821px;}
.y13c{bottom:448.139821px;}
.yf4{bottom:449.399820px;}
.ya5{bottom:454.439818px;}
.y13b{bottom:463.619815px;}
.y1b{bottom:466.679813px;}
.y77{bottom:469.019812px;}
.ycc{bottom:469.199812px;}
.y115{bottom:475.679810px;}
.ya4{bottom:476.759809px;}
.y49{bottom:477.119809px;}
.yf3{bottom:483.959806px;}
.y13a{bottom:485.939806px;}
.y76{bottom:486.299805px;}
.ycb{bottom:491.699803px;}
.y48{bottom:499.259800px;}
.y1a{bottom:500.699800px;}
.yf2{bottom:501.239800px;}
.y75{bottom:503.399799px;}
.ya3{bottom:506.099798px;}
.y139{bottom:508.259797px;}
.y114{bottom:509.699796px;}
.yca{bottom:514.199794px;}
.yf1{bottom:518.519793px;}
.y74{bottom:520.679792px;}
.y47{bottom:521.579791px;}
.y19{bottom:522.839791px;}
.y138{bottom:530.579788px;}
.yf0{bottom:535.619786px;}
.yc9{bottom:536.699785px;}
.y73{bottom:537.959785px;}
.yef{bottom:540.839784px;}
.ya2{bottom:543.899782px;}
.y113{bottom:544.439782px;}
.y18{bottom:545.159782px;}
.y137{bottom:552.899779px;}
.yee{bottom:553.799778px;}
.y72{bottom:555.239778px;}
.y46{bottom:556.139778px;}
.yc8{bottom:559.199776px;}
.ya1{bottom:566.219774px;}
.y71{bottom:572.519771px;}
.y136{bottom:575.219770px;}
.y112{bottom:578.819768px;}
.y17{bottom:579.719768px;}
.yc7{bottom:581.699767px;}
.y70{bottom:589.619764px;}
.y45{bottom:590.699764px;}
.ya0{bottom:596.099762px;}
.y111{bottom:600.959760px;}
.yec{bottom:601.139760px;}
.yc6{bottom:604.199758px;}
.y6f{bottom:606.899757px;}
.yed{bottom:607.979757px;}
.y135{bottom:609.779756px;}
.y44{bottom:613.019755px;}
.y16{bottom:614.279754px;}
.y9f{bottom:616.799753px;}
.yeb{bottom:623.279751px;}
.y6e{bottom:624.179750px;}
.yc5{bottom:626.699749px;}
.y43{bottom:635.339746px;}
.y15{bottom:636.419745px;}
.y9e{bottom:637.499745px;}
.y6d{bottom:641.459743px;}
.y134{bottom:644.159742px;}
.ye9{bottom:645.599742px;}
.yc4{bottom:649.199740px;}
.yea{bottom:652.439739px;}
.y42{bottom:657.659737px;}
.y9d{bottom:658.199737px;}
.y6c{bottom:658.739737px;}
.y14{bottom:658.919736px;}
.ye8{bottom:667.919733px;}
.yc3{bottom:671.699731px;}
.y156{bottom:675.299730px;}
.y6b{bottom:676.019730px;}
.y133{bottom:678.539729px;}
.y9c{bottom:678.899728px;}
.y41{bottom:679.979728px;}
.y13{bottom:681.239728px;}
.y110{bottom:690.239724px;}
.y6a{bottom:694.019722px;}
.yc2{bottom:694.199722px;}
.y9b{bottom:699.599720px;}
.y132{bottom:700.679720px;}
.ye7{bottom:702.479719px;}
.y12{bottom:703.559719px;}
.y155{bottom:704.999718px;}
.y40{bottom:714.539714px;}
.yc1{bottom:716.699713px;}
.y9a{bottom:720.299712px;}
.y131{bottom:722.999711px;}
.ye6{bottom:724.619710px;}
.y10f{bottom:724.799710px;}
.y154{bottom:725.699710px;}
.y11{bottom:725.879710px;}
.y3f{bottom:736.679705px;}
.y99{bottom:740.999704px;}
.y130{bottom:745.319702px;}
.y153{bottom:746.399701px;}
.ye5{bottom:746.939701px;}
.y10{bottom:748.199701px;}
.y69{bottom:752.879699px;}
.ybf{bottom:757.199697px;}
.y3e{bottom:758.999696px;}
.y98{bottom:761.699695px;}
.yc0{bottom:764.039694px;}
.y12f{bottom:767.639693px;}
.ye4{bottom:769.259692px;}
.yf{bottom:770.519692px;}
.y68{bottom:773.579691px;}
.y152{bottom:776.099690px;}
.y3d{bottom:781.319687px;}
.y97{bottom:782.399687px;}
.y12e{bottom:789.959684px;}
.y10e{bottom:791.579683px;}
.ye{bottom:792.839683px;}
.ybe{bottom:793.379683px;}
.y67{bottom:794.279682px;}
.y151{bottom:796.799681px;}
.y96{bottom:803.099679px;}
.y3c{bottom:803.639679px;}
.ye2{bottom:803.819678px;}
.ye3{bottom:810.659676px;}
.y12d{bottom:812.279675px;}
.y66{bottom:814.979674px;}
.yd{bottom:815.159674px;}
.ybd{bottom:815.699674px;}
.y150{bottom:817.499673px;}
.y95{bottom:823.799670px;}
.y3b{bottom:825.959670px;}
.y10d{bottom:826.139670px;}
.y12c{bottom:834.599666px;}
.yc{bottom:837.479665px;}
.ybc{bottom:838.019665px;}
.y94{bottom:844.499662px;}
.y64{bottom:844.679662px;}
.y14f{bottom:847.199661px;}
.y3a{bottom:848.279661px;}
.y65{bottom:851.519659px;}
.ybb{bottom:860.339656px;}
.y93{bottom:865.199654px;}
.y63{bottom:865.379654px;}
.y14e{bottom:867.899653px;}
.y12b{bottom:869.159652px;}
.y39{bottom:870.599652px;}
.yb{bottom:872.039651px;}
.ye1{bottom:877.439649px;}
.yba{bottom:882.659647px;}
.y92{bottom:885.899646px;}
.y62{bottom:886.079646px;}
.ye0{bottom:892.919643px;}
.y14d{bottom:897.599641px;}
.y12a{bottom:903.539639px;}
.yb9{bottom:904.979638px;}
.y37{bottom:905.159638px;}
.ya{bottom:906.419637px;}
.y91{bottom:906.599637px;}
.y61{bottom:906.779637px;}
.y38{bottom:911.999635px;}
.y10c{bottom:915.239634px;}
.y14c{bottom:918.299633px;}
.y36{bottom:927.299629px;}
.y60{bottom:927.479629px;}
.ydf{bottom:934.319626px;}
.y129{bottom:937.739625px;}
.y9{bottom:940.799624px;}
.y14b{bottom:947.999621px;}
.y35{bottom:949.619620px;}
.y10a{bottom:949.799620px;}
.y10b{bottom:956.639617px;}
.y90{bottom:956.999617px;}
.y128{bottom:960.059616px;}
.y5f{bottom:961.859615px;}
.y14a{bottom:968.699613px;}
.y34{bottom:971.939611px;}
.y8{bottom:974.999610px;}
.y8f{bottom:977.699609px;}
.y127{bottom:982.379607px;}
.y5e{bottom:983.999606px;}
.yb8{bottom:984.179606px;}
.y149{bottom:989.399604px;}
.yde{bottom:994.259602px;}
.y8e{bottom:998.399601px;}
.y126{bottom:1004.699598px;}
.y5d{bottom:1006.319597px;}
.y33{bottom:1006.499597px;}
.y7{bottom:1009.379596px;}
.ydd{bottom:1016.579593px;}
.y148{bottom:1019.099592px;}
.y125{bottom:1027.019589px;}
.y8d{bottom:1028.099589px;}
.y32{bottom:1028.639589px;}
.ydc{bottom:1039.079584px;}
.y6{bottom:1045.019582px;}
.y8c{bottom:1048.799580px;}
.y124{bottom:1049.339580px;}
.y31{bottom:1050.959580px;}
.ydb{bottom:1061.399575px;}
.y8b{bottom:1069.499572px;}
.y123{bottom:1071.659571px;}
.y2f{bottom:1073.279571px;}
.y109{bottom:1073.459571px;}
.y5{bottom:1074.899570px;}
.y30{bottom:1080.119568px;}
.y8a{bottom:1090.199564px;}
.y2e{bottom:1095.599562px;}
.yda{bottom:1095.779562px;}
.y147{bottom:1099.199560px;}
.y4{bottom:1104.599558px;}
.y122{bottom:1106.219558px;}
.y2d{bottom:1117.919553px;}
.y88{bottom:1119.899552px;}
.y89{bottom:1126.739549px;}
.y3{bottom:1134.479546px;}
.y2c{bottom:1140.419544px;}
.y87{bottom:1140.599544px;}
.y5c{bottom:1147.259541px;}
.hc{height:25.913662px;}
.h8{height:38.158578px;}
.hb{height:39.830258px;}
.h1{height:44.149201px;}
.h7{height:47.344903px;}
.ha{height:58.621969px;}
.h9{height:58.651148px;}
.h4{height:70.628878px;}
.h3{height:70.664034px;}
.h5{height:72.562471px;}
.h6{height:75.093720px;}
.h2{height:96.508086px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:127.620091px;}
.x3d{left:141.299943px;}
.x18{left:147.596277px;}
.x3{left:150.839940px;}
.xb{left:154.619540px;}
.x1e{left:179.639928px;}
.xc{left:181.619520px;}
.x4{left:184.139901px;}
.x11{left:185.579926px;}
.x37{left:190.439924px;}
.x6{left:194.399896px;}
.x5{left:197.459901px;}
.x2f{left:198.719921px;}
.x16{left:207.716367px;}
.x30{left:210.959916px;}
.x1d{left:212.579730px;}
.x3e{left:217.079913px;}
.x3f{left:230.759908px;}
.x8{left:249.480651px;}
.xf{left:255.599898px;}
.x10{left:261.719895px;}
.x31{left:264.779894px;}
.x14{left:268.199893px;}
.x32{left:278.459889px;}
.x1a{left:279.896692px;}
.x9{left:282.600586px;}
.x2d{left:288.539885px;}
.x12{left:299.339880px;}
.x2e{left:300.779880px;}
.x13{left:305.459878px;}
.x17{left:333.537015px;}
.x23{left:359.459856px;}
.xa{left:360.900530px;}
.x24{left:373.139851px;}
.x3a{left:380.879848px;}
.x3b{left:394.559842px;}
.x19{left:395.996716px;}
.xd{left:406.799837px;}
.xe{left:412.919835px;}
.x15{left:414.536718px;}
.x25{left:445.139822px;}
.x7{left:446.399821px;}
.x33{left:456.479817px;}
.x26{left:458.819816px;}
.x34{left:470.159812px;}
.x3c{left:491.939803px;}
.x29{left:521.459791px;}
.x2a{left:533.699787px;}
.x1b{left:594.899762px;}
.x1c{left:601.019760px;}
.x21{left:653.039739px;}
.x22{left:659.159736px;}
.x27{left:678.959728px;}
.x38{left:680.399728px;}
.x28{left:685.079726px;}
.x39{left:692.639723px;}
.x1f{left:708.299717px;}
.x20{left:714.419714px;}
.x35{left:735.839706px;}
.x36{left:748.079701px;}
.x2b{left:753.119699px;}
.x1{left:757.079697px;}
.x40{left:761.039696px;}
.x2c{left:765.359694px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.009381pt;}
.ls6{letter-spacing:0.018917pt;}
.ls9{letter-spacing:0.149775pt;}
.ls5{letter-spacing:0.162347pt;}
.ls3{letter-spacing:0.168267pt;}
.ls2{letter-spacing:0.336535pt;}
.ls4{letter-spacing:1.443146pt;}
.ls8{letter-spacing:4.004692pt;}
.lsa{letter-spacing:5.291411pt;}
.ls0{letter-spacing:30.236308pt;}
.ws5{word-spacing:-16.018911pt;}
.ws0{word-spacing:-15.999994pt;}
.ws3{word-spacing:-13.616529pt;}
.ws2{word-spacing:-13.279995pt;}
.ws4{word-spacing:-10.719996pt;}
.ws6{word-spacing:-8.639997pt;}
.ws7{word-spacing:-7.810557pt;}
.ws1{word-spacing:0.000000pt;}
._1b{margin-left:-8.760071pt;}
._12{margin-left:-4.093460pt;}
._11{margin-left:-3.185080pt;}
._e{margin-left:-1.962037pt;}
._1{margin-left:-0.933818pt;}
._0{width:1.177095pt;}
._8{width:2.346379pt;}
._c{width:3.310259pt;}
._d{width:4.273352pt;}
._17{width:5.167068pt;}
._15{width:6.324171pt;}
._f{width:7.336389pt;}
._2{width:8.832955pt;}
._3{width:9.962719pt;}
._16{width:11.649165pt;}
._9{width:12.687884pt;}
._a{width:13.716436pt;}
._10{width:14.750698pt;}
._1c{width:17.061831pt;}
._19{width:18.544691pt;}
._18{width:19.494781pt;}
._13{width:21.173446pt;}
._14{width:22.069996pt;}
._21{width:23.531049pt;}
._7{width:24.933742pt;}
._20{width:26.241876pt;}
._4{width:28.961821pt;}
._6{width:29.869744pt;}
._5{width:30.761058pt;}
._1a{width:33.337446pt;}
._b{width:34.898493pt;}
._1e{width:64.641134pt;}
._1f{width:172.911291pt;}
._1d{width:175.635898pt;}
.fs4{font-size:34.559986pt;}
.fs3{font-size:42.879983pt;}
.fs5{font-size:53.119979pt;}
.fs0{font-size:58.879976pt;}
.fs2{font-size:63.999974pt;}
.fs1{font-size:85.119966pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:51.466913pt;}
.y1{bottom:69.386906pt;}
.y108{bottom:97.866628pt;}
.y86{bottom:98.186627pt;}
.yd9{bottom:98.186894pt;}
.y2b{bottom:98.506627pt;}
.yd8{bottom:102.826892pt;}
.yb7{bottom:105.866624pt;}
.y146{bottom:105.866891pt;}
.y5b{bottom:109.866889pt;}
.y145{bottom:110.506889pt;}
.y107{bottom:113.226621pt;}
.yd7{bottom:114.986887pt;}
.y2a{bottom:118.346619pt;}
.yb6{bottom:121.226618pt;}
.y144{bottom:122.026885pt;}
.y85{bottom:122.186618pt;}
.y5a{bottom:126.346883pt;}
.y106{bottom:128.586615pt;}
.yb5{bottom:136.586612pt;}
.y84{bottom:137.546612pt;}
.y29{bottom:138.186611pt;}
.yd6{bottom:140.906610pt;}
.yb4{bottom:141.226610pt;}
.y59{bottom:142.826610pt;}
.y105{bottom:143.946609pt;}
.y121{bottom:152.906606pt;}
.y28{bottom:158.026603pt;}
.y104{bottom:159.306603pt;}
.y58{bottom:159.466603pt;}
.yb3{bottom:159.946603pt;}
.yd5{bottom:160.746602pt;}
.y83{bottom:160.906602pt;}
.y120{bottom:168.266599pt;}
.y103{bottom:174.826597pt;}
.yb2{bottom:175.306597pt;}
.y57{bottom:175.946596pt;}
.y27{bottom:177.866596pt;}
.y102{bottom:179.466595pt;}
.y56{bottom:180.586594pt;}
.y11f{bottom:183.466593pt;}
.y82{bottom:184.266593pt;}
.y11e{bottom:188.106591pt;}
.yb1{bottom:190.826590pt;}
.yb0{bottom:195.466588pt;}
.y143{bottom:197.866588pt;}
.y101{bottom:198.826587pt;}
.y55{bottom:199.306587pt;}
.y81{bottom:199.466587pt;}
.yd4{bottom:200.426586pt;}
.y26{bottom:204.426585pt;}
.y11d{bottom:206.826584pt;}
.y100{bottom:214.186581pt;}
.y54{bottom:214.666581pt;}
.yaf{bottom:214.826581pt;}
.yff{bottom:218.826579pt;}
.yae{bottom:219.466579pt;}
.y11c{bottom:222.186578pt;}
.y25{bottom:222.826578pt;}
.y142{bottom:224.266577pt;}
.y53{bottom:230.026575pt;}
.yad{bottom:230.986574pt;}
.yd3{bottom:231.146574pt;}
.yfe{bottom:237.546572pt;}
.y24{bottom:241.226570pt;}
.yfd{bottom:242.186570pt;}
.y141{bottom:242.666570pt;}
.y52{bottom:245.386569pt;}
.y80{bottom:246.186568pt;}
.y51{bottom:250.026567pt;}
.yd2{bottom:250.826566pt;}
.y11b{bottom:253.706565pt;}
.y23{bottom:259.626563pt;}
.yfc{bottom:260.906562pt;}
.y140{bottom:261.066562pt;}
.y50{bottom:261.546562pt;}
.yab{bottom:263.626561pt;}
.y7f{bottom:269.546559pt;}
.yac{bottom:269.706559pt;}
.yd1{bottom:270.666558pt;}
.yfb{bottom:276.266556pt;}
.y22{bottom:278.026555pt;}
.yfa{bottom:280.906554pt;}
.yaa{bottom:283.146553pt;}
.y4f{bottom:283.786553pt;}
.y13f{bottom:291.306550pt;}
.y7e{bottom:292.906550pt;}
.y21{bottom:296.426548pt;}
.yf9{bottom:299.466547pt;}
.ya9{bottom:302.986545pt;}
.y4e{bottom:303.626545pt;}
.yd0{bottom:305.066545pt;}
.y11a{bottom:312.906542pt;}
.y20{bottom:314.826541pt;}
.y7d{bottom:316.266540pt;}
.y13e{bottom:322.186538pt;}
.ya8{bottom:322.826538pt;}
.y4d{bottom:323.466537pt;}
.yf8{bottom:330.186535pt;}
.y7c{bottom:331.466534pt;}
.y119{bottom:332.586534pt;}
.ycf{bottom:341.066530pt;}
.y1f{bottom:341.226530pt;}
.y4c{bottom:343.306529pt;}
.yf7{bottom:345.546528pt;}
.y7b{bottom:346.826528pt;}
.yf6{bottom:350.186527pt;}
.y118{bottom:352.586526pt;}
.y13d{bottom:352.746526pt;}
.ya7{bottom:353.866525pt;}
.y1e{bottom:359.626523pt;}
.yce{bottom:361.066522pt;}
.yf5{bottom:368.906519pt;}
.y7a{bottom:370.186519pt;}
.y117{bottom:372.426518pt;}
.y4b{bottom:374.026517pt;}
.y1d{bottom:378.026515pt;}
.ycd{bottom:381.066514pt;}
.ya6{bottom:384.266513pt;}
.y116{bottom:392.266510pt;}
.y79{bottom:393.546509pt;}
.y4a{bottom:393.706509pt;}
.y1c{bottom:396.426508pt;}
.y78{bottom:398.186507pt;}
.y13c{bottom:398.346507pt;}
.yf4{bottom:399.466507pt;}
.ya5{bottom:403.946505pt;}
.y13b{bottom:412.106502pt;}
.y1b{bottom:414.826501pt;}
.y77{bottom:416.906500pt;}
.ycc{bottom:417.066500pt;}
.y115{bottom:422.826498pt;}
.ya4{bottom:423.786497pt;}
.y49{bottom:424.106497pt;}
.yf3{bottom:430.186495pt;}
.y13a{bottom:431.946494pt;}
.y76{bottom:432.266494pt;}
.ycb{bottom:437.066492pt;}
.y48{bottom:443.786489pt;}
.y1a{bottom:445.066489pt;}
.yf2{bottom:445.546488pt;}
.y75{bottom:447.466488pt;}
.ya3{bottom:449.866487pt;}
.y139{bottom:451.786486pt;}
.y114{bottom:453.066485pt;}
.yca{bottom:457.066484pt;}
.yf1{bottom:460.906482pt;}
.y74{bottom:462.826482pt;}
.y47{bottom:463.626481pt;}
.y19{bottom:464.746481pt;}
.y138{bottom:471.626478pt;}
.yf0{bottom:476.106476pt;}
.yc9{bottom:477.066476pt;}
.y73{bottom:478.186475pt;}
.yef{bottom:480.746474pt;}
.ya2{bottom:483.466473pt;}
.y113{bottom:483.946473pt;}
.y18{bottom:484.586473pt;}
.y137{bottom:491.466470pt;}
.yee{bottom:492.266470pt;}
.y72{bottom:493.546469pt;}
.y46{bottom:494.346469pt;}
.yc8{bottom:497.066468pt;}
.ya1{bottom:503.306465pt;}
.y71{bottom:508.906463pt;}
.y136{bottom:511.306462pt;}
.y112{bottom:514.506461pt;}
.y17{bottom:515.306461pt;}
.yc7{bottom:517.066460pt;}
.y70{bottom:524.106457pt;}
.y45{bottom:525.066457pt;}
.ya0{bottom:529.866455pt;}
.y111{bottom:534.186453pt;}
.yec{bottom:534.346453pt;}
.yc6{bottom:537.066452pt;}
.y6f{bottom:539.466451pt;}
.yed{bottom:540.426450pt;}
.y135{bottom:542.026450pt;}
.y44{bottom:544.906449pt;}
.y16{bottom:546.026448pt;}
.y9f{bottom:548.266447pt;}
.yeb{bottom:554.026445pt;}
.y6e{bottom:554.826445pt;}
.yc5{bottom:557.066444pt;}
.y43{bottom:564.746441pt;}
.y15{bottom:565.706440pt;}
.y9e{bottom:566.666440pt;}
.y6d{bottom:570.186439pt;}
.y134{bottom:572.586438pt;}
.ye9{bottom:573.866437pt;}
.yc4{bottom:577.066436pt;}
.yea{bottom:579.946435pt;}
.y42{bottom:584.586433pt;}
.y9d{bottom:585.066433pt;}
.y6c{bottom:585.546432pt;}
.y14{bottom:585.706432pt;}
.ye8{bottom:593.706429pt;}
.yc3{bottom:597.066428pt;}
.y156{bottom:600.266427pt;}
.y6b{bottom:600.906426pt;}
.y133{bottom:603.146425pt;}
.y9c{bottom:603.466425pt;}
.y41{bottom:604.426425pt;}
.y13{bottom:605.546424pt;}
.y110{bottom:613.546421pt;}
.y6a{bottom:616.906420pt;}
.yc2{bottom:617.066420pt;}
.y9b{bottom:621.866418pt;}
.y132{bottom:622.826418pt;}
.ye7{bottom:624.426417pt;}
.y12{bottom:625.386417pt;}
.y155{bottom:626.666416pt;}
.y40{bottom:635.146413pt;}
.yc1{bottom:637.066412pt;}
.y9a{bottom:640.266411pt;}
.y131{bottom:642.666410pt;}
.ye6{bottom:644.106409pt;}
.y10f{bottom:644.266409pt;}
.y154{bottom:645.066409pt;}
.y11{bottom:645.226409pt;}
.y3f{bottom:654.826405pt;}
.y99{bottom:658.666403pt;}
.y130{bottom:662.506402pt;}
.y153{bottom:663.466401pt;}
.ye5{bottom:663.946401pt;}
.y10{bottom:665.066401pt;}
.y69{bottom:669.226399pt;}
.ybf{bottom:673.066397pt;}
.y3e{bottom:674.666397pt;}
.y98{bottom:677.066396pt;}
.yc0{bottom:679.146395pt;}
.y12f{bottom:682.346394pt;}
.ye4{bottom:683.786393pt;}
.yf{bottom:684.906393pt;}
.y68{bottom:687.626392pt;}
.y152{bottom:689.866391pt;}
.y3d{bottom:694.506389pt;}
.y97{bottom:695.466388pt;}
.y12e{bottom:702.186386pt;}
.y10e{bottom:703.626385pt;}
.ye{bottom:704.746385pt;}
.ybe{bottom:705.226385pt;}
.y67{bottom:706.026384pt;}
.y151{bottom:708.266383pt;}
.y96{bottom:713.866381pt;}
.y3c{bottom:714.346381pt;}
.ye2{bottom:714.506381pt;}
.ye3{bottom:720.586378pt;}
.y12d{bottom:722.026378pt;}
.y66{bottom:724.426377pt;}
.yd{bottom:724.586377pt;}
.ybd{bottom:725.066377pt;}
.y150{bottom:726.666376pt;}
.y95{bottom:732.266374pt;}
.y3b{bottom:734.186373pt;}
.y10d{bottom:734.346373pt;}
.y12c{bottom:741.866370pt;}
.yc{bottom:744.426369pt;}
.ybc{bottom:744.906369pt;}
.y94{bottom:750.666366pt;}
.y64{bottom:750.826366pt;}
.y14f{bottom:753.066365pt;}
.y3a{bottom:754.026365pt;}
.y65{bottom:756.906364pt;}
.ybb{bottom:764.746361pt;}
.y93{bottom:769.066359pt;}
.y63{bottom:769.226359pt;}
.y14e{bottom:771.466358pt;}
.y12b{bottom:772.586358pt;}
.y39{bottom:773.866357pt;}
.yb{bottom:775.146357pt;}
.ye1{bottom:779.946355pt;}
.yba{bottom:784.586353pt;}
.y92{bottom:787.466352pt;}
.y62{bottom:787.626352pt;}
.ye0{bottom:793.706349pt;}
.y14d{bottom:797.866348pt;}
.y12a{bottom:803.146345pt;}
.yb9{bottom:804.426345pt;}
.y37{bottom:804.586345pt;}
.ya{bottom:805.706344pt;}
.y91{bottom:805.866344pt;}
.y61{bottom:806.026344pt;}
.y38{bottom:810.666342pt;}
.y10c{bottom:813.546341pt;}
.y14c{bottom:816.266340pt;}
.y36{bottom:824.266337pt;}
.y60{bottom:824.426337pt;}
.ydf{bottom:830.506334pt;}
.y129{bottom:833.546333pt;}
.y9{bottom:836.266332pt;}
.y14b{bottom:842.666330pt;}
.y35{bottom:844.106329pt;}
.y10a{bottom:844.266329pt;}
.y10b{bottom:850.346327pt;}
.y90{bottom:850.666326pt;}
.y128{bottom:853.386325pt;}
.y5f{bottom:854.986325pt;}
.y14a{bottom:861.066322pt;}
.y34{bottom:863.946321pt;}
.y8{bottom:866.666320pt;}
.y8f{bottom:869.066319pt;}
.y127{bottom:873.226317pt;}
.y5e{bottom:874.666317pt;}
.yb8{bottom:874.826317pt;}
.y149{bottom:879.466315pt;}
.yde{bottom:883.786313pt;}
.y8e{bottom:887.466312pt;}
.y126{bottom:893.066309pt;}
.y5d{bottom:894.506309pt;}
.y33{bottom:894.666309pt;}
.y7{bottom:897.226308pt;}
.ydd{bottom:903.626305pt;}
.y148{bottom:905.866304pt;}
.y125{bottom:912.906302pt;}
.y8d{bottom:913.866301pt;}
.y32{bottom:914.346301pt;}
.ydc{bottom:923.626297pt;}
.y6{bottom:928.906295pt;}
.y8c{bottom:932.266294pt;}
.y124{bottom:932.746294pt;}
.y31{bottom:934.186293pt;}
.ydb{bottom:943.466289pt;}
.y8b{bottom:950.666286pt;}
.y123{bottom:952.586286pt;}
.y2f{bottom:954.026285pt;}
.y109{bottom:954.186285pt;}
.y5{bottom:955.466284pt;}
.y30{bottom:960.106283pt;}
.y8a{bottom:969.066279pt;}
.y2e{bottom:973.866277pt;}
.yda{bottom:974.026277pt;}
.y147{bottom:977.066276pt;}
.y4{bottom:981.866274pt;}
.y122{bottom:983.306273pt;}
.y2d{bottom:993.706269pt;}
.y88{bottom:995.466268pt;}
.y89{bottom:1001.546266pt;}
.y3{bottom:1008.426263pt;}
.y2c{bottom:1013.706261pt;}
.y87{bottom:1013.866261pt;}
.y5c{bottom:1019.786259pt;}
.hc{height:23.034366pt;}
.h8{height:33.918736pt;}
.hb{height:35.404673pt;}
.h1{height:39.243734pt;}
.h7{height:42.084358pt;}
.ha{height:52.108417pt;}
.h9{height:52.134354pt;}
.h4{height:62.781225pt;}
.h3{height:62.812475pt;}
.h5{height:64.499974pt;}
.h6{height:66.749973pt;}
.h2{height:85.784966pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:113.440081pt;}
.x3d{left:125.599950pt;}
.x18{left:131.196691pt;}
.x3{left:134.079946pt;}
.xb{left:137.439591pt;}
.x1e{left:159.679936pt;}
.xc{left:161.439573pt;}
.x4{left:163.679912pt;}
.x11{left:164.959934pt;}
.x37{left:169.279932pt;}
.x6{left:172.799908pt;}
.x5{left:175.519912pt;}
.x2f{left:176.639929pt;}
.x16{left:184.636770pt;}
.x30{left:187.519925pt;}
.x1d{left:188.959760pt;}
.x3e{left:192.959923pt;}
.x3f{left:205.119918pt;}
.x8{left:221.760579pt;}
.xf{left:227.199909pt;}
.x10{left:232.639907pt;}
.x31{left:235.359906pt;}
.x14{left:238.399905pt;}
.x32{left:247.519901pt;}
.x1a{left:248.797060pt;}
.x9{left:251.200521pt;}
.x2d{left:256.479897pt;}
.x12{left:266.079894pt;}
.x2e{left:267.359893pt;}
.x13{left:271.519891pt;}
.x17{left:296.477347pt;}
.x23{left:319.519872pt;}
.xa{left:320.800471pt;}
.x24{left:331.679867pt;}
.x3a{left:338.559865pt;}
.x3b{left:350.719860pt;}
.x19{left:351.997081pt;}
.xd{left:361.599855pt;}
.xe{left:367.039853pt;}
.x15{left:368.477083pt;}
.x25{left:395.679842pt;}
.x7{left:396.799841pt;}
.x33{left:405.759838pt;}
.x26{left:407.839837pt;}
.x34{left:417.919833pt;}
.x3c{left:437.279825pt;}
.x29{left:463.519815pt;}
.x2a{left:474.399810pt;}
.x1b{left:528.799788pt;}
.x1c{left:534.239786pt;}
.x21{left:580.479768pt;}
.x22{left:585.919766pt;}
.x27{left:603.519759pt;}
.x38{left:604.799758pt;}
.x28{left:608.959756pt;}
.x39{left:615.679754pt;}
.x1f{left:629.599748pt;}
.x20{left:635.039746pt;}
.x35{left:654.079738pt;}
.x36{left:664.959734pt;}
.x2b{left:669.439732pt;}
.x1{left:672.959731pt;}
.x40{left:676.479729pt;}
.x2c{left:680.319728pt;}
}




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