
    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_0d98ecf21a71df519f9aa033.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_1f1f01834ef53f91ba594e48.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_e8fe1486619d8cbe46486774.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_ee749099648eec6ee117d390.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_6c41599018f22831bb17fc11.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_60e7b2f5c0cc730d5b1a5b2f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.708008;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;}
.v3{vertical-align:-2.879873px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:20.880194px;}
.v1{vertical-align:44.639900px;}
.ls0{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.000012px;}
.ls1{letter-spacing:0.072000px;}
.ls13{letter-spacing:0.072012px;}
.ls3{letter-spacing:0.221027px;}
.lse{letter-spacing:0.221033px;}
.ls14{letter-spacing:0.479069px;}
.ls16{letter-spacing:0.576053px;}
.ls15{letter-spacing:0.576059px;}
.ls10{letter-spacing:2.015995px;}
.ls11{letter-spacing:2.735963px;}
.ls17{letter-spacing:2.736011px;}
.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;}
}
.ws6{word-spacing:-72.143820px;}
.ws4{word-spacing:-71.999820px;}
.ws7{word-spacing:-20.087950px;}
.ws5{word-spacing:-19.871950px;}
.ws3{word-spacing:-13.499102px;}
.ws2{word-spacing:-13.458926px;}
.ws1{word-spacing:-13.314207px;}
.ws0{word-spacing:0.000000px;}
._2{margin-left:-3.828296px;}
._29{margin-left:-2.233425px;}
._1{margin-left:-1.007997px;}
._0{width:1.439996px;}
._6{width:2.951993px;}
._8{width:4.607982px;}
._5{width:5.615986px;}
._3f{width:6.626845px;}
._1e{width:7.631981px;}
._2f{width:8.903978px;}
._28{width:10.072718px;}
._13{width:11.087972px;}
._c{width:12.383969px;}
._39{width:13.463966px;}
._e{width:14.903963px;}
._4{width:16.127960px;}
._22{width:17.279957px;}
._19{width:18.575954px;}
._b{width:20.999930px;}
._a{width:22.247944px;}
._d{width:23.759941px;}
._1d{width:24.839938px;}
._12{width:26.063935px;}
._9{width:27.503931px;}
._16{width:28.541138px;}
._21{width:30.023925px;}
._34{width:31.319922px;}
._35{width:33.479916px;}
._11{width:34.631913px;}
._1b{width:35.711911px;}
._15{width:37.655906px;}
._3a{width:38.807903px;}
._30{width:40.103900px;}
._45{width:41.687896px;}
._17{width:42.767893px;}
._10{width:44.207889px;}
._f{width:45.719892px;}
._37{width:47.231882px;}
._36{width:48.457310px;}
._1a{width:49.895875px;}
._33{width:50.905297px;}
._25{width:52.055870px;}
._27{width:53.063957px;}
._3{width:55.151862px;}
._14{width:57.023857px;}
._2e{width:58.061819px;}
._20{width:59.327852px;}
._1f{width:60.551849px;}
._32{width:61.991845px;}
._2c{width:63.109147px;}
._2b{width:64.703808px;}
._3e{width:66.383834px;}
._26{width:67.655819px;}
._31{width:68.759864px;}
._40{width:70.031783px;}
._23{width:71.063822px;}
._24{width:72.503819px;}
._2d{width:75.815810px;}
._41{width:77.831805px;}
._42{width:79.127802px;}
._3d{width:81.719796px;}
._3b{width:83.015792px;}
._18{width:84.239789px;}
._44{width:85.247787px;}
._1c{width:86.471784px;}
._7{width:87.623781px;}
._38{width:89.399663px;}
._2a{width:93.431610px;}
._43{width:96.350274px;}
._3c{width:97.663067px;}
._46{width:101.015747px;}
.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:8.999978px;}
.y3{bottom:23.759890px;}
.y31{bottom:29.879900px;}
.y30{bottom:51.839867px;}
.y4{bottom:54.359849px;}
.y2f{bottom:73.289794px;}
.ya7{bottom:75.629785px;}
.ye9{bottom:89.129752px;}
.y14c{bottom:92.009719px;}
.y11c{bottom:93.089764px;}
.y2e{bottom:95.249762px;}
.ya6{bottom:97.589753px;}
.y82{bottom:101.909750px;}
.ye8{bottom:111.089719px;}
.y14b{bottom:113.969687px;}
.y11b{bottom:115.049730px;}
.y81{bottom:116.489668px;}
.y2d{bottom:117.389722px;}
.ya5{bottom:119.729711px;}
.y80{bottom:131.249672px;}
.y84{bottom:131.429664px;}
.ye7{bottom:133.229677px;}
.y14a{bottom:136.109645px;}
.y11a{bottom:137.189599px;}
.y2c{bottom:139.529590px;}
.ya4{bottom:141.689587px;}
.y7f{bottom:146.009584px;}
.ye6{bottom:155.369546px;}
.y149{bottom:158.249604px;}
.y119{bottom:159.329558px;}
.y7e{bottom:160.769588px;}
.y2b{bottom:161.489556px;}
.ya3{bottom:163.829547px;}
.y83{bottom:164.549607px;}
.ye5{bottom:177.329513px;}
.y148{bottom:180.209480px;}
.y7c{bottom:181.109532px;}
.y118{bottom:181.289524px;}
.y2a{bottom:183.629515px;}
.ya2{bottom:185.969507px;}
.y7b{bottom:195.869444px;}
.ye4{bottom:199.469473px;}
.y147{bottom:202.349439px;}
.y117{bottom:203.429484px;}
.y29{bottom:205.769475px;}
.ya1{bottom:207.929473px;}
.y7a{bottom:210.629448px;}
.ye3{bottom:221.429439px;}
.y146{bottom:224.309406px;}
.y79{bottom:225.389452px;}
.y7d{bottom:225.929428px;}
.y28{bottom:227.729441px;}
.ya0{bottom:230.069432px;}
.y78{bottom:242.669345px;}
.ye2{bottom:243.569399px;}
.y145{bottom:246.449366px;}
.y116{bottom:247.529320px;}
.y27{bottom:249.869309px;}
.y73{bottom:250.049393px;}
.y9f{bottom:252.029308px;}
.y77{bottom:257.429349px;}
.y72{bottom:264.629313px;}
.ye1{bottom:265.709267px;}
.y144{bottom:268.589326px;}
.y115{bottom:269.669278px;}
.y26{bottom:271.829277px;}
.y76{bottom:272.009269px;}
.y9e{bottom:274.169267px;}
.y71{bottom:279.389317px;}
.y75{bottom:286.769273px;}
.ye0{bottom:287.669233px;}
.y143{bottom:290.549292px;}
.y114{bottom:291.629245px;}
.y25{bottom:293.969237px;}
.y70{bottom:294.329221px;}
.y9d{bottom:296.309226px;}
.y74{bottom:302.249244px;}
.ydf{bottom:309.809192px;}
.y142{bottom:312.689160px;}
.y113{bottom:313.769205px;}
.y24{bottom:316.109195px;}
.y9c{bottom:318.269194px;}
.y6c{bottom:318.629178px;}
.y6f{bottom:326.009134px;}
.yde{bottom:331.949152px;}
.y6b{bottom:333.389182px;}
.y141{bottom:334.829119px;}
.y112{bottom:335.909165px;}
.y23{bottom:338.069162px;}
.y9b{bottom:340.454105px;}
.y6e{bottom:340.814089px;}
.y6a{bottom:348.194137px;}
.ydd{bottom:353.954072px;}
.y140{bottom:356.834039px;}
.y111{bottom:357.914083px;}
.y22{bottom:360.254074px;}
.y9a{bottom:362.414071px;}
.y69{bottom:362.954049px;}
.y6d{bottom:363.494025px;}
.ydc{bottom:376.094031px;}
.y13f{bottom:378.973997px;}
.y110{bottom:380.054042px;}
.y21{bottom:382.214041px;}
.y99{bottom:384.554031px;}
.y67{bottom:387.433998px;}
.ydb{bottom:398.053997px;}
.y13e{bottom:400.933965px;}
.y10f{bottom:402.014010px;}
.y66{bottom:402.194002px;}
.y20{bottom:404.354000px;}
.y98{bottom:406.693991px;}
.y65{bottom:416.953914px;}
.yda{bottom:420.193957px;}
.y14e{bottom:423.073924px;}
.y13d{bottom:423.793893px;}
.y10e{bottom:424.153878px;}
.y68{bottom:424.873938px;}
.y1f{bottom:426.493868px;}
.y97{bottom:428.653867px;}
.y63{bottom:441.433863px;}
.yd9{bottom:442.333825px;}
.y13c{bottom:445.213884px;}
.y10d{bottom:446.293836px;}
.y1e{bottom:448.453835px;}
.y96{bottom:450.793825px;}
.y62{bottom:456.193867px;}
.yd8{bottom:464.293791px;}
.y13b{bottom:467.173850px;}
.y10c{bottom:468.253804px;}
.y1d{bottom:470.593795px;}
.y61{bottom:470.953779px;}
.y95{bottom:472.753793px;}
.y60{bottom:485.713783px;}
.y64{bottom:486.253759px;}
.yd7{bottom:486.433751px;}
.y13a{bottom:489.313718px;}
.y10b{bottom:490.393764px;}
.y1c{bottom:492.553761px;}
.y94{bottom:494.893752px;}
.yd6{bottom:508.393719px;}
.y5e{bottom:510.193686px;}
.y139{bottom:511.273686px;}
.y10a{bottom:512.353685px;}
.y1b{bottom:514.693674px;}
.y93{bottom:517.033665px;}
.y5d{bottom:524.773652px;}
.yd5{bottom:530.533632px;}
.y138{bottom:533.413644px;}
.y14d{bottom:534.133659px;}
.y109{bottom:534.493644px;}
.y1a{bottom:536.833634px;}
.y92{bottom:538.993633px;}
.y5c{bottom:539.533609px;}
.yd4{bottom:552.673591px;}
.yec{bottom:553.393606px;}
.y5b{bottom:554.473605px;}
.y137{bottom:555.553604px;}
.y108{bottom:556.633602px;}
.y19{bottom:558.793555px;}
.y91{bottom:561.133591px;}
.y5f{bottom:562.213591px;}
.yd3{bottom:574.633557px;}
.y136{bottom:577.513525px;}
.y107{bottom:578.593525px;}
.y59{bottom:578.773517px;}
.y18{bottom:580.933515px;}
.y90{bottom:583.273506px;}
.y58{bottom:593.533474px;}
.yd2{bottom:596.773472px;}
.y135{bottom:599.653484px;}
.y106{bottom:600.733483px;}
.y17{bottom:602.893482px;}
.y8f{bottom:605.233472px;}
.y57{bottom:608.323461px;}
.yd1{bottom:618.763422px;}
.y134{bottom:621.643435px;}
.y105{bottom:622.723434px;}
.y56{bottom:623.083418px;}
.y5a{bottom:623.623396px;}
.y16{bottom:625.063425px;}
.y8e{bottom:627.403415px;}
.y54{bottom:640.363359px;}
.yd0{bottom:640.903381px;}
.y133{bottom:643.783349px;}
.y104{bottom:644.863347px;}
.y15{bottom:647.203338px;}
.y8d{bottom:649.363336px;}
.y53{bottom:654.943324px;}
.ycf{bottom:663.043294px;}
.y132{bottom:665.923308px;}
.y103{bottom:667.003307px;}
.y52{bottom:669.703282px;}
.y14{bottom:669.883319px;}
.y8c{bottom:671.503296px;}
.y51{bottom:684.463286px;}
.yce{bottom:685.003262px;}
.y55{bottom:685.183254px;}
.y131{bottom:687.883274px;}
.y102{bottom:688.963275px;}
.y13{bottom:691.303264px;}
.y8b{bottom:693.643255px;}
.y4d{bottom:701.383241px;}
.ycd{bottom:707.143222px;}
.yeb{bottom:707.863190px;}
.y130{bottom:710.023189px;}
.y101{bottom:711.103188px;}
.y12{bottom:713.443177px;}
.y8a{bottom:715.603176px;}
.y4c{bottom:715.963207px;}
.y50{bottom:723.343163px;}
.ycc{bottom:729.103143px;}
.y4b{bottom:730.723164px;}
.y12f{bottom:731.983155px;}
.y100{bottom:733.063155px;}
.y11{bottom:736.123115px;}
.y89{bottom:737.743136px;}
.y4f{bottom:738.103120px;}
.y4a{bottom:745.483121px;}
.ycb{bottom:751.243102px;}
.y4e{bottom:752.863077px;}
.y12e{bottom:754.123070px;}
.yff{bottom:755.203068px;}
.y10{bottom:757.543058px;}
.y88{bottom:759.703057px;}
.y49{bottom:760.243080px;}
.yca{bottom:773.383061px;}
.y48{bottom:775.003037px;}
.y12d{bottom:776.263028px;}
.yfe{bottom:777.343028px;}
.yf{bottom:779.503026px;}
.ya8{bottom:781.843017px;}
.y87{bottom:782.563032px;}
.yc9{bottom:795.342983px;}
.y12c{bottom:798.222995px;}
.y47{bottom:798.402987px;}
.yfd{bottom:799.302994px;}
.ye{bottom:802.362954px;}
.y42{bottom:805.782944px;}
.y46{bottom:813.162945px;}
.yc8{bottom:817.482941px;}
.yb7{bottom:818.382948px;}
.y12b{bottom:820.362909px;}
.y41{bottom:820.542901px;}
.yfc{bottom:821.442907px;}
.yd{bottom:823.782899px;}
.y45{bottom:827.922903px;}
.y40{bottom:835.482896px;}
.yc7{bottom:839.442862px;}
.yb6{bottom:840.522863px;}
.y12a{bottom:842.322876px;}
.y44{bottom:842.682860px;}
.yfb{bottom:843.402875px;}
.yc{bottom:846.462881px;}
.y3f{bottom:850.062863px;}
.yc6{bottom:861.582822px;}
.yb5{bottom:862.482829px;}
.y129{bottom:864.462836px;}
.y43{bottom:864.822820px;}
.yfa{bottom:865.542788px;}
.yb{bottom:868.602794px;}
.yc5{bottom:883.767758px;}
.yb4{bottom:884.667764px;}
.y3e{bottom:885.027771px;}
.y128{bottom:886.647747px;}
.yf9{bottom:887.727746px;}
.ya{bottom:889.887744px;}
.y3a{bottom:904.827717px;}
.yc4{bottom:905.727701px;}
.yb3{bottom:906.807700px;}
.y127{bottom:908.607713px;}
.yf8{bottom:909.687690px;}
.y9{bottom:912.027703px;}
.y3d{bottom:912.207695px;}
.y39{bottom:919.587674px;}
.y3c{bottom:926.967654px;}
.yc3{bottom:927.867661px;}
.yb2{bottom:928.767645px;}
.y126{bottom:930.747651px;}
.yf7{bottom:931.827649px;}
.y8{bottom:934.167641px;}
.y38{bottom:934.347633px;}
.y3b{bottom:941.727611px;}
.y37{bottom:949.107612px;}
.yc2{bottom:950.007596px;}
.yb1{bottom:950.907603px;}
.y125{bottom:952.887586px;}
.yf6{bottom:953.967587px;}
.y7{bottom:956.127584px;}
.y36{bottom:963.867571px;}
.yc1{bottom:971.967542px;}
.yb0{bottom:972.867548px;}
.y124{bottom:974.847531px;}
.yf5{bottom:975.927530px;}
.y6{bottom:978.267521px;}
.y35{bottom:980.067535px;}
.yc0{bottom:994.107500px;}
.yaf{bottom:995.007484px;}
.y123{bottom:996.987490px;}
.yf4{bottom:998.067490px;}
.y5{bottom:1000.947480px;}
.y34{bottom:1003.107477px;}
.ybf{bottom:1016.067445px;}
.y33{bottom:1017.867436px;}
.y122{bottom:1018.947435px;}
.yf3{bottom:1020.027433px;}
.y32{bottom:1021.467418px;}
.yae{bottom:1029.027411px;}
.ybe{bottom:1038.207380px;}
.y121{bottom:1041.087370px;}
.yf2{bottom:1042.167371px;}
.ybd{bottom:1060.347318px;}
.y120{bottom:1063.227307px;}
.yad{bottom:1063.947322px;}
.yf1{bottom:1064.307306px;}
.ybc{bottom:1082.307273px;}
.y11f{bottom:1085.187263px;}
.yac{bottom:1085.907255px;}
.yf0{bottom:1086.267262px;}
.ybb{bottom:1104.447209px;}
.y11e{bottom:1107.327211px;}
.yab{bottom:1108.047203px;}
.yef{bottom:1108.407199px;}
.yba{bottom:1126.401157px;}
.yaa{bottom:1129.281147px;}
.yee{bottom:1130.361146px;}
.yea{bottom:1148.577108px;}
.yb9{bottom:1149.297100px;}
.y11d{bottom:1151.457097px;}
.ya9{bottom:1152.177090px;}
.yed{bottom:1152.537096px;}
.yb8{bottom:1156.497086px;}
.y86{bottom:1219.856925px;}
.y2{bottom:1234.076888px;}
.h7{height:36.179910px;}
.h8{height:36.287909px;}
.ha{height:48.774253px;}
.hb{height:53.015492px;}
.h4{height:53.999865px;}
.h5{height:54.107865px;}
.h3{height:59.438875px;}
.hc{height:59.582101px;}
.h9{height:69.654447px;}
.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;}
.x4d{left:68.399813px;}
.x55{left:74.879796px;}
.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;}
.x52{left:163.469582px;}
.x5{left:180.389539px;}
.x54{left:257.249343px;}
.x56{left:307.154225px;}
.x4c{left:321.554175px;}
.x53{left:328.214163px;}
.x50{left:344.594119px;}
.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;}
.x2c{left:416.413923px;}
.x49{left:420.733920px;}
.x39{left:422.893919px;}
.x20{left:424.873924px;}
.x2d{left:438.553883px;}
.x51{left:457.093860px;}
.x57{left:459.613843px;}
.x2f{left:462.313817px;}
.x2{left:471.343825px;}
.x58{left:480.343802px;}
.x4e{left:482.323763px;}
.x4f{left:562.603590px;}
.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;}
.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;}
@media print{
.v4{vertical-align:-27.519953pt;}
.v2{vertical-align:-26.239929pt;}
.v3{vertical-align:-2.559887pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:18.560172pt;}
.v1{vertical-align:39.679911pt;}
.ls0{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.000011pt;}
.ls1{letter-spacing:0.064000pt;}
.ls13{letter-spacing:0.064011pt;}
.ls3{letter-spacing:0.196469pt;}
.lse{letter-spacing:0.196474pt;}
.ls14{letter-spacing:0.425839pt;}
.ls16{letter-spacing:0.512047pt;}
.ls15{letter-spacing:0.512052pt;}
.ls10{letter-spacing:1.791996pt;}
.ls11{letter-spacing:2.431967pt;}
.ls17{letter-spacing:2.432010pt;}
.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;}
.ws6{word-spacing:-64.127840pt;}
.ws4{word-spacing:-63.999840pt;}
.ws7{word-spacing:-17.855955pt;}
.ws5{word-spacing:-17.663956pt;}
.ws3{word-spacing:-11.999202pt;}
.ws2{word-spacing:-11.963490pt;}
.ws1{word-spacing:-11.834850pt;}
.ws0{word-spacing:0.000000pt;}
._2{margin-left:-3.402930pt;}
._29{margin-left:-1.985267pt;}
._1{margin-left:-0.895998pt;}
._0{width:1.279997pt;}
._6{width:2.623993pt;}
._8{width:4.095984pt;}
._5{width:4.991988pt;}
._3f{width:5.890529pt;}
._1e{width:6.783983pt;}
._2f{width:7.914647pt;}
._28{width:8.953527pt;}
._13{width:9.855975pt;}
._c{width:11.007972pt;}
._39{width:11.967970pt;}
._e{width:13.247967pt;}
._4{width:14.335964pt;}
._22{width:15.359962pt;}
._19{width:16.511959pt;}
._b{width:18.666604pt;}
._a{width:19.775951pt;}
._d{width:21.119947pt;}
._1d{width:22.079945pt;}
._12{width:23.167942pt;}
._9{width:24.447939pt;}
._16{width:25.369901pt;}
._21{width:26.687933pt;}
._34{width:27.839930pt;}
._35{width:29.759926pt;}
._11{width:30.783923pt;}
._1b{width:31.743921pt;}
._15{width:33.471916pt;}
._3a{width:34.495914pt;}
._30{width:35.647911pt;}
._45{width:37.055907pt;}
._17{width:38.015905pt;}
._10{width:39.295902pt;}
._f{width:40.639904pt;}
._37{width:41.983895pt;}
._36{width:43.073164pt;}
._1a{width:44.351889pt;}
._33{width:45.249153pt;}
._25{width:46.271884pt;}
._27{width:47.167962pt;}
._3{width:49.023877pt;}
._14{width:50.687873pt;}
._2e{width:51.610505pt;}
._20{width:52.735868pt;}
._1f{width:53.823865pt;}
._32{width:55.103862pt;}
._2c{width:56.097020pt;}
._2b{width:57.514496pt;}
._3e{width:59.007852pt;}
._26{width:60.138506pt;}
._31{width:61.119879pt;}
._40{width:62.250474pt;}
._23{width:63.167842pt;}
._24{width:64.447839pt;}
._2d{width:67.391832pt;}
._41{width:69.183827pt;}
._42{width:70.335824pt;}
._3d{width:72.639818pt;}
._3b{width:73.791816pt;}
._18{width:74.879813pt;}
._44{width:75.775811pt;}
._1c{width:76.863808pt;}
._7{width:77.887805pt;}
._38{width:79.466367pt;}
._2a{width:83.050320pt;}
._43{width:85.644688pt;}
._3c{width:86.811615pt;}
._46{width:89.791776pt;}
.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:7.999980pt;}
.y3{bottom:21.119902pt;}
.y31{bottom:26.559911pt;}
.y30{bottom:46.079882pt;}
.y4{bottom:48.319866pt;}
.y2f{bottom:65.146484pt;}
.ya7{bottom:67.226476pt;}
.ye9{bottom:79.226446pt;}
.y14c{bottom:81.786417pt;}
.y11c{bottom:82.746457pt;}
.y2e{bottom:84.666455pt;}
.ya6{bottom:86.746447pt;}
.y82{bottom:90.586444pt;}
.ye8{bottom:98.746417pt;}
.y14b{bottom:101.306388pt;}
.y11b{bottom:102.266427pt;}
.y81{bottom:103.546372pt;}
.y2d{bottom:104.346419pt;}
.ya5{bottom:106.426410pt;}
.y80{bottom:116.666375pt;}
.y84{bottom:116.826368pt;}
.ye7{bottom:118.426380pt;}
.y14a{bottom:120.986351pt;}
.y11a{bottom:121.946310pt;}
.y2c{bottom:124.026302pt;}
.ya4{bottom:125.946300pt;}
.y7f{bottom:129.786297pt;}
.ye6{bottom:138.106263pt;}
.y149{bottom:140.666315pt;}
.y119{bottom:141.626274pt;}
.y7e{bottom:142.906300pt;}
.y2b{bottom:143.546272pt;}
.ya3{bottom:145.626264pt;}
.y83{bottom:146.266317pt;}
.ye5{bottom:157.626234pt;}
.y148{bottom:160.186205pt;}
.y7c{bottom:160.986251pt;}
.y118{bottom:161.146244pt;}
.y2a{bottom:163.226236pt;}
.ya2{bottom:165.306228pt;}
.y7b{bottom:174.106173pt;}
.ye4{bottom:177.306198pt;}
.y147{bottom:179.866168pt;}
.y117{bottom:180.826208pt;}
.y29{bottom:182.906200pt;}
.ya1{bottom:184.826198pt;}
.y7a{bottom:187.226176pt;}
.ye3{bottom:196.826168pt;}
.y146{bottom:199.386139pt;}
.y79{bottom:200.346179pt;}
.y7d{bottom:200.826158pt;}
.y28{bottom:202.426170pt;}
.ya0{bottom:204.506162pt;}
.y78{bottom:215.706085pt;}
.ye2{bottom:216.506132pt;}
.y145{bottom:219.066103pt;}
.y116{bottom:220.026062pt;}
.y27{bottom:222.106053pt;}
.y73{bottom:222.266127pt;}
.y9f{bottom:224.026052pt;}
.y77{bottom:228.826088pt;}
.y72{bottom:235.226056pt;}
.ye1{bottom:236.186015pt;}
.y144{bottom:238.746067pt;}
.y115{bottom:239.706025pt;}
.y26{bottom:241.626024pt;}
.y76{bottom:241.786017pt;}
.y9e{bottom:243.706015pt;}
.y71{bottom:248.346059pt;}
.y75{bottom:254.906020pt;}
.ye0{bottom:255.705985pt;}
.y143{bottom:258.266037pt;}
.y114{bottom:259.225996pt;}
.y25{bottom:261.305988pt;}
.y70{bottom:261.625974pt;}
.y9d{bottom:263.385979pt;}
.y74{bottom:268.665995pt;}
.ydf{bottom:275.385949pt;}
.y142{bottom:277.945920pt;}
.y113{bottom:278.905960pt;}
.y24{bottom:280.985951pt;}
.y9c{bottom:282.905950pt;}
.y6c{bottom:283.225936pt;}
.y6f{bottom:289.785897pt;}
.yde{bottom:295.065913pt;}
.y6b{bottom:296.345939pt;}
.y141{bottom:297.625884pt;}
.y112{bottom:298.585924pt;}
.y23{bottom:300.505922pt;}
.y9b{bottom:302.625871pt;}
.y6e{bottom:302.945857pt;}
.y6a{bottom:309.505900pt;}
.ydd{bottom:314.625841pt;}
.y140{bottom:317.185812pt;}
.y111{bottom:318.145851pt;}
.y22{bottom:320.225843pt;}
.y9a{bottom:322.145841pt;}
.y69{bottom:322.625821pt;}
.y6d{bottom:323.105800pt;}
.ydc{bottom:334.305806pt;}
.y13f{bottom:336.865775pt;}
.y110{bottom:337.825815pt;}
.y21{bottom:339.745815pt;}
.y99{bottom:341.825805pt;}
.y67{bottom:344.385776pt;}
.ydb{bottom:353.825775pt;}
.y13e{bottom:356.385746pt;}
.y10f{bottom:357.345787pt;}
.y66{bottom:357.505780pt;}
.y20{bottom:359.425777pt;}
.y98{bottom:361.505770pt;}
.y65{bottom:370.625701pt;}
.yda{bottom:373.505740pt;}
.y14e{bottom:376.065711pt;}
.y13d{bottom:376.705682pt;}
.y10e{bottom:377.025669pt;}
.y68{bottom:377.665723pt;}
.y1f{bottom:379.105660pt;}
.y97{bottom:381.025659pt;}
.y63{bottom:392.385656pt;}
.yd9{bottom:393.185622pt;}
.y13c{bottom:395.745675pt;}
.y10d{bottom:396.705632pt;}
.y1e{bottom:398.625631pt;}
.y96{bottom:400.705622pt;}
.y62{bottom:405.505660pt;}
.yd8{bottom:412.705592pt;}
.y13b{bottom:415.265644pt;}
.y10c{bottom:416.225603pt;}
.y1d{bottom:418.305596pt;}
.y61{bottom:418.625581pt;}
.y95{bottom:420.225593pt;}
.y60{bottom:431.745585pt;}
.y64{bottom:432.225563pt;}
.yd7{bottom:432.385556pt;}
.y13a{bottom:434.945527pt;}
.y10b{bottom:435.905568pt;}
.y1c{bottom:437.825565pt;}
.y94{bottom:439.905558pt;}
.yd6{bottom:451.905528pt;}
.y5e{bottom:453.505498pt;}
.y139{bottom:454.465499pt;}
.y10a{bottom:455.425497pt;}
.y1b{bottom:457.505488pt;}
.y93{bottom:459.585480pt;}
.y5d{bottom:466.465469pt;}
.yd5{bottom:471.585450pt;}
.y138{bottom:474.145461pt;}
.y14d{bottom:474.785474pt;}
.y109{bottom:475.105462pt;}
.y1a{bottom:477.185452pt;}
.y92{bottom:479.105452pt;}
.y5c{bottom:479.585430pt;}
.yd4{bottom:491.265415pt;}
.yec{bottom:491.905428pt;}
.y5b{bottom:492.865427pt;}
.y137{bottom:493.825425pt;}
.y108{bottom:494.785424pt;}
.y19{bottom:496.705382pt;}
.y91{bottom:498.785414pt;}
.y5f{bottom:499.745415pt;}
.yd3{bottom:510.785384pt;}
.y136{bottom:513.345355pt;}
.y107{bottom:514.305356pt;}
.y59{bottom:514.465349pt;}
.y18{bottom:516.385346pt;}
.y90{bottom:518.465339pt;}
.y58{bottom:527.585310pt;}
.yd2{bottom:530.465309pt;}
.y135{bottom:533.025319pt;}
.y106{bottom:533.985318pt;}
.y17{bottom:535.905318pt;}
.y8f{bottom:537.985308pt;}
.y57{bottom:540.731966pt;}
.yd1{bottom:550.011930pt;}
.y134{bottom:552.571943pt;}
.y105{bottom:553.531942pt;}
.y56{bottom:553.851927pt;}
.y5a{bottom:554.331908pt;}
.y16{bottom:555.611934pt;}
.y8e{bottom:557.691924pt;}
.y54{bottom:569.211874pt;}
.yd0{bottom:569.691894pt;}
.y133{bottom:572.251865pt;}
.y104{bottom:573.211864pt;}
.y15{bottom:575.291856pt;}
.y8d{bottom:577.211854pt;}
.y53{bottom:582.171843pt;}
.ycf{bottom:589.371817pt;}
.y132{bottom:591.931830pt;}
.y103{bottom:592.891828pt;}
.y52{bottom:595.291806pt;}
.y14{bottom:595.451839pt;}
.y8c{bottom:596.891818pt;}
.y51{bottom:608.411810pt;}
.yce{bottom:608.891788pt;}
.y55{bottom:609.051781pt;}
.y131{bottom:611.451799pt;}
.y102{bottom:612.411800pt;}
.y13{bottom:614.491790pt;}
.y8b{bottom:616.571783pt;}
.y4d{bottom:623.451769pt;}
.ycd{bottom:628.571753pt;}
.yeb{bottom:629.211724pt;}
.y130{bottom:631.131724pt;}
.y101{bottom:632.091722pt;}
.y12{bottom:634.171713pt;}
.y8a{bottom:636.091712pt;}
.y4c{bottom:636.411740pt;}
.y50{bottom:642.971701pt;}
.ycc{bottom:648.091682pt;}
.y4b{bottom:649.531702pt;}
.y12f{bottom:650.651693pt;}
.y100{bottom:651.611694pt;}
.y11{bottom:654.331658pt;}
.y89{bottom:655.771677pt;}
.y4f{bottom:656.091662pt;}
.y4a{bottom:662.651663pt;}
.ycb{bottom:667.771647pt;}
.y4e{bottom:669.211624pt;}
.y12e{bottom:670.331618pt;}
.yff{bottom:671.291616pt;}
.y10{bottom:673.371607pt;}
.y88{bottom:675.291606pt;}
.y49{bottom:675.771627pt;}
.yca{bottom:687.451609pt;}
.y48{bottom:688.891588pt;}
.y12d{bottom:690.011580pt;}
.yfe{bottom:690.971581pt;}
.yf{bottom:692.891578pt;}
.ya8{bottom:694.971571pt;}
.y87{bottom:695.611584pt;}
.yc9{bottom:706.971541pt;}
.y12c{bottom:709.531552pt;}
.y47{bottom:709.691544pt;}
.yfd{bottom:710.491550pt;}
.ye{bottom:713.211514pt;}
.y42{bottom:716.251505pt;}
.y46{bottom:722.811506pt;}
.yc8{bottom:726.651503pt;}
.yb7{bottom:727.451509pt;}
.y12b{bottom:729.211474pt;}
.y41{bottom:729.371467pt;}
.yfc{bottom:730.171473pt;}
.yd{bottom:732.251465pt;}
.y45{bottom:735.931470pt;}
.y40{bottom:742.651463pt;}
.yc7{bottom:746.171433pt;}
.yb6{bottom:747.131434pt;}
.y12a{bottom:748.731446pt;}
.y44{bottom:749.051431pt;}
.yfb{bottom:749.691444pt;}
.yc{bottom:752.411450pt;}
.y3f{bottom:755.611434pt;}
.yc6{bottom:765.851397pt;}
.yb5{bottom:766.651403pt;}
.y129{bottom:768.411410pt;}
.y43{bottom:768.731396pt;}
.yfa{bottom:769.371367pt;}
.yb{bottom:772.091372pt;}
.yc5{bottom:785.571340pt;}
.yb4{bottom:786.371346pt;}
.y3e{bottom:786.691352pt;}
.y128{bottom:788.131331pt;}
.yf9{bottom:789.091330pt;}
.ya{bottom:791.011328pt;}
.y3a{bottom:804.291304pt;}
.yc4{bottom:805.091290pt;}
.yb3{bottom:806.051289pt;}
.y127{bottom:807.651301pt;}
.yf8{bottom:808.611280pt;}
.y9{bottom:810.691292pt;}
.y3d{bottom:810.851285pt;}
.y39{bottom:817.411266pt;}
.y3c{bottom:823.971248pt;}
.yc3{bottom:824.771254pt;}
.yb2{bottom:825.571240pt;}
.y126{bottom:827.331245pt;}
.yf7{bottom:828.291244pt;}
.y8{bottom:830.371236pt;}
.y38{bottom:830.531229pt;}
.y3b{bottom:837.091210pt;}
.y37{bottom:843.651211pt;}
.yc2{bottom:844.451197pt;}
.yb1{bottom:845.251203pt;}
.y125{bottom:847.011188pt;}
.yf6{bottom:847.971188pt;}
.y7{bottom:849.891186pt;}
.y36{bottom:856.771174pt;}
.yc1{bottom:863.971148pt;}
.yb0{bottom:864.771154pt;}
.y124{bottom:866.531139pt;}
.yf5{bottom:867.491138pt;}
.y6{bottom:869.571130pt;}
.y35{bottom:871.171142pt;}
.yc0{bottom:883.651111pt;}
.yaf{bottom:884.451097pt;}
.y123{bottom:886.211102pt;}
.yf4{bottom:887.171102pt;}
.y5{bottom:889.731093pt;}
.y34{bottom:891.651091pt;}
.ybf{bottom:903.171062pt;}
.y33{bottom:904.771054pt;}
.y122{bottom:905.731053pt;}
.yf3{bottom:906.691052pt;}
.y32{bottom:907.971038pt;}
.yae{bottom:914.691032pt;}
.ybe{bottom:922.851005pt;}
.y121{bottom:925.410996pt;}
.yf2{bottom:926.370996pt;}
.ybd{bottom:942.530949pt;}
.y120{bottom:945.090940pt;}
.yad{bottom:945.730953pt;}
.yf1{bottom:946.050939pt;}
.ybc{bottom:962.050910pt;}
.y11f{bottom:964.610900pt;}
.yac{bottom:965.250894pt;}
.yf0{bottom:965.570899pt;}
.ybb{bottom:981.730852pt;}
.y11e{bottom:984.290854pt;}
.yab{bottom:984.930847pt;}
.yef{bottom:985.250844pt;}
.yba{bottom:1001.245473pt;}
.yaa{bottom:1003.805464pt;}
.yee{bottom:1004.765463pt;}
.yea{bottom:1020.957429pt;}
.yb9{bottom:1021.597422pt;}
.y11d{bottom:1023.517420pt;}
.ya9{bottom:1024.157413pt;}
.yed{bottom:1024.477419pt;}
.yb8{bottom:1027.997410pt;}
.y86{bottom:1084.317267pt;}
.y2{bottom:1096.957234pt;}
.h7{height:32.159920pt;}
.h8{height:32.255919pt;}
.ha{height:43.354892pt;}
.hb{height:47.124882pt;}
.h4{height:47.999880pt;}
.h5{height:48.095880pt;}
.h3{height:52.834555pt;}
.hc{height:52.961868pt;}
.h9{height:61.915064pt;}
.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;}
.x4d{left:60.799833pt;}
.x55{left:66.559819pt;}
.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;}
.x52{left:145.306295pt;}
.x5{left:160.346256pt;}
.x54{left:228.666083pt;}
.x56{left:273.025977pt;}
.x4c{left:285.825933pt;}
.x53{left:291.745923pt;}
.x50{left:306.305884pt;}
.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;}
.x2c{left:370.145709pt;}
.x49{left:373.985706pt;}
.x39{left:375.905706pt;}
.x20{left:377.665711pt;}
.x2d{left:389.825673pt;}
.x51{left:406.305654pt;}
.x57{left:408.545639pt;}
.x2f{left:410.945615pt;}
.x2{left:418.972289pt;}
.x58{left:426.972269pt;}
.x4e{left:428.732234pt;}
.x4f{left:500.092080pt;}
.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;}
.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;}
}




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