
    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_8e8e42c0a2e99434c2709657.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6e6eabb6d04e6175acec1bd6.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e92a2d50e6d17cf6e5ad0453.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b4d3a00300ce9d54582edb18.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_9f26385cab8c8c1902e42853.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.281250;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_b7b71b89f9a9b424dd326e44.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.239258;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.249517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-80.639968px;}
.v3{vertical-align:-73.439971px;}
.v1{vertical-align:-70.559972px;}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.064920px;}
.ls3{letter-spacing:0.393096px;}
.ls2{letter-spacing:0.393184px;}
.lsb{letter-spacing:186.506458px;}
.lsc{letter-spacing:186.506702px;}
.ls7{letter-spacing:186.508146px;}
.ls0{letter-spacing:186.509325px;}
.lsa{letter-spacing:186.509861px;}
.ls8{letter-spacing:186.510538px;}
.ls9{letter-spacing:186.512167px;}
.ls5{letter-spacing:389.938644px;}
.ls6{letter-spacing:1195.721522px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-16.919993px;}
.ws5{word-spacing:-15.397044px;}
.ws2{word-spacing:-14.043594px;}
.ws4{word-spacing:-11.167016px;}
.ws3{word-spacing:-9.136436px;}
.ws1{word-spacing:0.000000px;}
._18{margin-left:-14.427862px;}
._1c{margin-left:-12.249020px;}
._c{margin-left:-6.309338px;}
._4{margin-left:-5.272762px;}
._5{margin-left:-3.307018px;}
._1{margin-left:-1.732092px;}
._0{width:1.104069px;}
._d{width:2.481252px;}
._14{width:3.561550px;}
._7{width:4.710040px;}
._2{width:5.900965px;}
._3{width:7.603536px;}
._19{width:8.704718px;}
._10{width:9.963560px;}
._e{width:11.184522px;}
._f{width:12.346699px;}
._1a{width:14.084622px;}
._15{width:15.809131px;}
._23{width:16.980103px;}
._1b{width:18.052213px;}
._13{width:19.336569px;}
._12{width:20.827060px;}
._8{width:22.885944px;}
._9{width:23.925589px;}
._21{width:26.307268px;}
._22{width:27.446037px;}
._20{width:28.600066px;}
._1f{width:29.657284px;}
._b{width:30.780671px;}
._a{width:31.890814px;}
._1e{width:34.589230px;}
._1d{width:35.930002px;}
._17{width:39.647999px;}
._16{width:40.701975px;}
._25{width:104.132521px;}
._11{width:169.589776px;}
._6{width:186.509762px;}
._24{width:188.033011px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.545745px;}
.fs1{font-size:44.668062px;}
.fs5{font-size:56.174378px;}
.fs2{font-size:61.588175px;}
.fs0{font-size:67.679973px;}
.fs4{font-size:78.508169px;}
.fs3{font-size:84.599966px;}
.y0{bottom:0.000000px;}
.ye0{bottom:106.559957px;}
.y136{bottom:111.959955px;}
.ye1{bottom:114.479954px;}
.y31{bottom:117.719953px;}
.y137{bottom:119.699952px;}
.yb5{bottom:120.059952px;}
.y60{bottom:122.939951px;}
.yd4{bottom:123.479951px;}
.yd5{bottom:131.399947px;}
.y30{bottom:137.519945px;}
.y9c{bottom:139.859944px;}
.y5e{bottom:140.399944px;}
.ydf{bottom:142.919943px;}
.y13a{bottom:143.459943px;}
.yb4{bottom:145.439942px;}
.y145{bottom:146.879941px;}
.y157{bottom:147.599941px;}
.y5f{bottom:148.319941px;}
.y134{bottom:148.679941px;}
.y135{bottom:156.599937px;}
.y9b{bottom:156.779937px;}
.y73{bottom:157.319937px;}
.y2f{bottom:157.499937px;}
.yde{bottom:159.839936px;}
.yd2{bottom:160.379936px;}
.y10b{bottom:163.799934px;}
.y144{bottom:165.059934px;}
.y74{bottom:165.239934px;}
.y156{bottom:167.219933px;}
.yd3{bottom:168.299933px;}
.y133{bottom:168.659933px;}
.y14f{bottom:169.199932px;}
.y9a{bottom:173.699931px;}
.yb3{bottom:173.879930px;}
.y5d{bottom:176.759929px;}
.ydc{bottom:177.299929px;}
.y2e{bottom:177.479929px;}
.y143{bottom:183.059927px;}
.ydd{bottom:185.219926px;}
.y155{bottom:185.399926px;}
.y132{bottom:188.639925px;}
.y14e{bottom:188.819924px;}
.y99{bottom:190.619924px;}
.yb2{bottom:190.799924px;}
.y5c{bottom:193.679923px;}
.y109{bottom:194.219922px;}
.yd1{bottom:196.739921px;}
.ydb{bottom:197.279921px;}
.y2d{bottom:197.459921px;}
.y142{bottom:201.239920px;}
.y10a{bottom:202.139919px;}
.y154{bottom:203.399919px;}
.y14d{bottom:206.999917px;}
.yb1{bottom:207.719917px;}
.y97{bottom:208.079917px;}
.y131{bottom:208.619917px;}
.y5a{bottom:210.599916px;}
.yd0{bottom:214.199914px;}
.y98{bottom:215.999914px;}
.y5b{bottom:216.899913px;}
.y2c{bottom:217.439913px;}
.y141{bottom:219.239912px;}
.y153{bottom:221.579911px;}
.ye7{bottom:222.119911px;}
.y14c{bottom:224.999910px;}
.yaf{bottom:225.179910px;}
.yd9{bottom:225.539910px;}
.y72{bottom:227.519909px;}
.y58{bottom:228.599909px;}
.yb0{bottom:233.099907px;}
.yda{bottom:233.279907px;}
.y59{bottom:236.339905px;}
.y2b{bottom:237.419905px;}
.y152{bottom:239.579904px;}
.y108{bottom:240.119904px;}
.y14b{bottom:243.179903px;}
.y96{bottom:244.439902px;}
.y70{bottom:244.979902px;}
.yd8{bottom:245.519902px;}
.y130{bottom:248.579901px;}
.ye6{bottom:250.379900px;}
.y71{bottom:252.899899px;}
.y107{bottom:257.039897px;}
.y2a{bottom:257.399897px;}
.ycf{bottom:257.759897px;}
.y95{bottom:261.359895px;}
.yae{bottom:261.539895px;}
.y16b{bottom:263.879894px;}
.y57{bottom:264.779894px;}
.y6f{bottom:264.959894px;}
.yd7{bottom:265.499894px;}
.ye5{bottom:267.299893px;}
.y12f{bottom:268.559893px;}
.y140{bottom:273.959890px;}
.y106{bottom:274.679890px;}
.y151{bottom:276.119890px;}
.y29{bottom:277.379889px;}
.yce{bottom:277.739889px;}
.y94{bottom:278.279889px;}
.yad{bottom:278.459889px;}
.y14a{bottom:279.359888px;}
.y56{bottom:281.699887px;}
.y16a{bottom:283.499887px;}
.ye4{bottom:284.939886px;}
.y6e{bottom:285.479886px;}
.y12e{bottom:288.539885px;}
.y13f{bottom:289.799884px;}
.y150{bottom:292.139883px;}
.y105{bottom:294.659882px;}
.y93{bottom:295.199882px;}
.yac{bottom:295.379882px;}
.y28{bottom:297.359881px;}
.y149{bottom:297.539881px;}
.ycd{bottom:297.719881px;}
.y55{bottom:298.619881px;}
.y169{bottom:301.499879px;}
.y6d{bottom:305.459878px;}
.y12d{bottom:308.519877px;}
.yab{bottom:312.299875px;}
.y91{bottom:312.659875px;}
.y165{bottom:313.019875px;}
.y104{bottom:314.639874px;}
.y54{bottom:315.539874px;}
.y27{bottom:317.339873px;}
.ycc{bottom:317.699873px;}
.y168{bottom:319.679872px;}
.y92{bottom:320.579872px;}
.y6c{bottom:325.439870px;}
.y12c{bottom:328.499869px;}
.ya9{bottom:329.759868px;}
.y164{bottom:332.639867px;}
.y52{bottom:333.179867px;}
.y148{bottom:333.719867px;}
.y103{bottom:334.619866px;}
.y26{bottom:337.319865px;}
.yaa{bottom:337.679865px;}
.y53{bottom:340.919864px;}
.y6b{bottom:345.419862px;}
.y12b{bottom:348.479861px;}
.y90{bottom:349.019860px;}
.ya8{bottom:349.739860px;}
.y163{bottom:350.819860px;}
.y147{bottom:351.719859px;}
.y51{bottom:353.159859px;}
.y15e{bottom:354.059858px;}
.y101{bottom:354.599858px;}
.y167{bottom:355.859858px;}
.y25{bottom:357.299857px;}
.ycb{bottom:357.479857px;}
.y102{bottom:362.339855px;}
.y6a{bottom:365.399854px;}
.y8e{bottom:366.479853px;}
.y12a{bottom:368.459853px;}
.y162{bottom:368.819852px;}
.ya6{bottom:369.719852px;}
.ye3{bottom:373.139851px;}
.y15d{bottom:373.679851px;}
.y8f{bottom:374.399850px;}
.y24{bottom:377.099849px;}
.ya7{bottom:377.459849px;}
.y139{bottom:383.579847px;}
.y69{bottom:385.379846px;}
.y161{bottom:386.999845px;}
.y129{bottom:388.439845px;}
.ya5{bottom:388.979844px;}
.y50{bottom:391.319843px;}
.y15c{bottom:391.679843px;}
.y166{bottom:392.399843px;}
.y100{bottom:394.379842px;}
.y23{bottom:397.079841px;}
.yca{bottom:397.439841px;}
.y8d{bottom:402.659839px;}
.y138{bottom:403.559839px;}
.y146{bottom:404.279838px;}
.y68{bottom:405.359838px;}
.ya4{bottom:405.899838px;}
.y128{bottom:408.239837px;}
.y15b{bottom:409.859836px;}
.y4f{bottom:411.299835px;}
.yff{bottom:414.359834px;}
.y22{bottom:417.059833px;}
.yc9{bottom:417.419833px;}
.y8c{bottom:419.579832px;}
.ya3{bottom:422.819831px;}
.y160{bottom:423.539831px;}
.y67{bottom:425.159830px;}
.y15a{bottom:427.859829px;}
.y127{bottom:428.219829px;}
.y4e{bottom:431.279827px;}
.yfe{bottom:434.339826px;}
.y21{bottom:437.039825px;}
.y8a{bottom:437.219825px;}
.yc8{bottom:437.399825px;}
.y15f{bottom:439.379824px;}
.ya2{bottom:439.739824px;}
.y8b{bottom:444.959822px;}
.y66{bottom:445.139822px;}
.y126{bottom:448.199821px;}
.y4d{bottom:451.259819px;}
.yfd{bottom:454.319818px;}
.ya1{bottom:456.659817px;}
.y20{bottom:457.019817px;}
.y89{bottom:457.199817px;}
.yc7{bottom:457.379817px;}
.y159{bottom:464.579814px;}
.y65{bottom:465.119814px;}
.y125{bottom:468.179813px;}
.y4c{bottom:471.239812px;}
.ye2{bottom:473.039811px;}
.ya0{bottom:473.579811px;}
.yfc{bottom:474.299810px;}
.y1f{bottom:476.999809px;}
.yc6{bottom:477.359809px;}
.y158{bottom:480.419808px;}
.y64{bottom:485.099806px;}
.y124{bottom:488.159805px;}
.y9f{bottom:490.499804px;}
.y4a{bottom:491.219804px;}
.yfb{bottom:494.279802px;}
.y1e{bottom:496.979801px;}
.yc5{bottom:497.339801px;}
.y4b{bottom:498.959800px;}
.y63{bottom:505.079798px;}
.y9e{bottom:507.419797px;}
.y123{bottom:508.139797px;}
.y49{bottom:510.479796px;}
.y87{bottom:511.199796px;}
.yfa{bottom:514.259794px;}
.y1d{bottom:516.959793px;}
.yc4{bottom:517.319793px;}
.y88{bottom:518.939792px;}
.y62{bottom:525.059790px;}
.y48{bottom:527.399789px;}
.y122{bottom:528.119789px;}
.y85{bottom:531.179788px;}
.yf9{bottom:534.239786px;}
.y1c{bottom:536.939785px;}
.yc3{bottom:537.299785px;}
.y86{bottom:538.919784px;}
.y47{bottom:545.039782px;}
.y121{bottom:548.099781px;}
.y84{bottom:551.159780px;}
.yf8{bottom:554.219778px;}
.y1b{bottom:556.919777px;}
.yc2{bottom:557.279777px;}
.y46{bottom:565.019774px;}
.y120{bottom:568.079773px;}
.y83{bottom:571.139772px;}
.yf7{bottom:574.199770px;}
.y1a{bottom:576.899769px;}
.yc1{bottom:577.259769px;}
.y45{bottom:584.999766px;}
.y11f{bottom:588.059765px;}
.y82{bottom:591.119764px;}
.yf6{bottom:594.179762px;}
.y19{bottom:596.879761px;}
.yc0{bottom:597.059761px;}
.y44{bottom:604.979758px;}
.y11e{bottom:608.039757px;}
.y81{bottom:611.099756px;}
.yf5{bottom:613.979754px;}
.y18{bottom:616.859753px;}
.ybf{bottom:617.039753px;}
.y43{bottom:624.959750px;}
.y11d{bottom:628.019749px;}
.y80{bottom:630.899748px;}
.yf4{bottom:633.959746px;}
.y17{bottom:636.659745px;}
.ybe{bottom:637.019745px;}
.y42{bottom:644.939742px;}
.y11c{bottom:647.819741px;}
.y7f{bottom:650.879740px;}
.yf3{bottom:653.939738px;}
.y16{bottom:656.639737px;}
.ybd{bottom:656.999737px;}
.y41{bottom:664.739734px;}
.y11b{bottom:667.799733px;}
.y7e{bottom:670.859732px;}
.yf2{bottom:673.919730px;}
.y15{bottom:676.619729px;}
.ybc{bottom:676.979729px;}
.y40{bottom:684.719726px;}
.y11a{bottom:687.779725px;}
.y7d{bottom:690.839724px;}
.y61{bottom:692.639723px;}
.yf1{bottom:693.899722px;}
.y14{bottom:696.599721px;}
.ybb{bottom:696.959721px;}
.y3f{bottom:704.699718px;}
.y119{bottom:707.759717px;}
.y7c{bottom:710.819716px;}
.y9d{bottom:712.619715px;}
.yf0{bottom:713.879714px;}
.y13{bottom:716.579713px;}
.yba{bottom:716.939713px;}
.y3e{bottom:724.679710px;}
.y118{bottom:727.739709px;}
.y7b{bottom:730.799708px;}
.yef{bottom:733.859706px;}
.y12{bottom:736.559705px;}
.yb9{bottom:736.919705px;}
.y3d{bottom:744.659702px;}
.y117{bottom:747.719701px;}
.y7a{bottom:750.779700px;}
.yee{bottom:753.839698px;}
.yb8{bottom:756.899697px;}
.y11{bottom:757.259697px;}
.y3c{bottom:764.639694px;}
.y116{bottom:767.699693px;}
.y79{bottom:770.759692px;}
.yed{bottom:773.819690px;}
.yb7{bottom:776.159690px;}
.y10{bottom:780.299688px;}
.y3b{bottom:784.619686px;}
.y115{bottom:787.679685px;}
.y77{bottom:790.739684px;}
.yb6{bottom:793.079683px;}
.yeb{bottom:793.799682px;}
.y78{bottom:798.479681px;}
.yec{bottom:801.539679px;}
.yf{bottom:802.619679px;}
.y39{bottom:804.599678px;}
.y114{bottom:807.659677px;}
.y76{bottom:809.999676px;}
.y3a{bottom:812.339675px;}
.yea{bottom:813.059675px;}
.ye{bottom:822.959671px;}
.y13e{bottom:824.219670px;}
.y37{bottom:824.579670px;}
.y75{bottom:826.919669px;}
.y113{bottom:827.639669px;}
.ye9{bottom:829.979668px;}
.y38{bottom:832.319667px;}
.y13d{bottom:844.199662px;}
.y36{bottom:844.559662px;}
.ye8{bottom:846.899661px;}
.y112{bottom:847.619661px;}
.yd{bottom:847.799661px;}
.y13c{bottom:864.179654px;}
.y35{bottom:864.539654px;}
.y111{bottom:867.599653px;}
.yc{bottom:871.559651px;}
.y13b{bottom:884.159646px;}
.y34{bottom:884.519646px;}
.y110{bottom:887.579645px;}
.yb{bottom:889.739644px;}
.y33{bottom:904.499638px;}
.y10f{bottom:907.379637px;}
.ya{bottom:907.739637px;}
.y32{bottom:924.299630px;}
.y9{bottom:925.919630px;}
.y10d{bottom:927.359629px;}
.y10e{bottom:935.279626px;}
.y8{bottom:944.279622px;}
.y10c{bottom:946.799621px;}
.yd6{bottom:952.199619px;}
.y7{bottom:964.259614px;}
.y6{bottom:984.239606px;}
.y5{bottom:1004.219598px;}
.y4{bottom:1024.199590px;}
.y3{bottom:1042.739583px;}
.y2{bottom:1056.059578px;}
.y1{bottom:1070.639572px;}
.ha{height:35.867650px;}
.h2{height:43.817450px;}
.h3{height:43.839260px;}
.h8{height:55.132080px;}
.h4{height:60.445426px;}
.h9{height:66.391145px;}
.h1{height:66.424192px;}
.hb{height:68.208723px;}
.h7{height:77.013140px;}
.h6{height:77.051474px;}
.h5{height:85.260903px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:158.759936px;}
.x12{left:209.519916px;}
.x33{left:213.119915px;}
.x13{left:215.279914px;}
.x27{left:220.859912px;}
.x34{left:224.279910px;}
.x31{left:232.559907px;}
.x22{left:242.279903px;}
.x2f{left:243.899902px;}
.x16{left:247.679901px;}
.x17{left:253.259899px;}
.x30{left:255.059898px;}
.xe{left:260.279896px;}
.x3b{left:264.419894px;}
.x18{left:266.039894px;}
.x21{left:271.439891px;}
.x6{left:302.579888px;}
.x5{left:326.879869px;}
.x14{left:330.659868px;}
.x15{left:339.299864px;}
.x41{left:340.379864px;}
.x32{left:350.279860px;}
.x45{left:361.799838px;}
.x42{left:368.819852px;}
.x8{left:371.879851px;}
.x43{left:372.959851px;}
.x44{left:384.119846px;}
.x19{left:439.919824px;}
.x47{left:441.719823px;}
.x1f{left:455.399818px;}
.x20{left:460.979816px;}
.x23{left:466.379813px;}
.x24{left:484.379806px;}
.x25{left:488.519805px;}
.x26{left:499.679800px;}
.xf{left:505.619798px;}
.x10{left:509.759796px;}
.x11{left:515.339794px;}
.x28{left:534.599786px;}
.x48{left:536.759785px;}
.x29{left:538.739785px;}
.x9{left:544.859782px;}
.x2a{left:549.899780px;}
.x35{left:553.679779px;}
.x36{left:564.839774px;}
.xa{left:567.899773px;}
.xb{left:573.479771px;}
.x1a{left:585.539766px;}
.x1b{left:589.679764px;}
.x1c{left:595.259762px;}
.x40{left:602.459759px;}
.x7{left:614.519754px;}
.x3a{left:617.219753px;}
.x2d{left:628.379749px;}
.x2{left:631.979747px;}
.x2e{left:639.539744px;}
.xc{left:643.499743px;}
.xd{left:649.079740px;}
.x3c{left:654.839738px;}
.x37{left:662.759735px;}
.x38{left:666.719733px;}
.x39{left:677.879729px;}
.x2b{left:679.499728px;}
.x2c{left:690.659724px;}
.x3d{left:716.039714px;}
.x4{left:724.499710px;}
.x46{left:729.899708px;}
.x3{left:732.959699px;}
.x3e{left:737.999705px;}
.x3f{left:749.159700px;}
.x1d{left:752.759699px;}
.x1e{left:758.339697px;}
.x49{left:760.319696px;}
@media print{
.v2{vertical-align:-71.679971pt;}
.v3{vertical-align:-65.279974pt;}
.v1{vertical-align:-62.719975pt;}
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.057707pt;}
.ls3{letter-spacing:0.349419pt;}
.ls2{letter-spacing:0.349497pt;}
.lsb{letter-spacing:165.783518pt;}
.lsc{letter-spacing:165.783735pt;}
.ls7{letter-spacing:165.785019pt;}
.ls0{letter-spacing:165.786067pt;}
.lsa{letter-spacing:165.786543pt;}
.ls8{letter-spacing:165.787145pt;}
.ls9{letter-spacing:165.788592pt;}
.ls5{letter-spacing:346.612128pt;}
.ls6{letter-spacing:1062.863575pt;}
.ws0{word-spacing:-15.039994pt;}
.ws5{word-spacing:-13.686261pt;}
.ws2{word-spacing:-12.483195pt;}
.ws4{word-spacing:-9.926236pt;}
.ws3{word-spacing:-8.121277pt;}
.ws1{word-spacing:0.000000pt;}
._18{margin-left:-12.824766pt;}
._1c{margin-left:-10.888017pt;}
._c{margin-left:-5.608300pt;}
._4{margin-left:-4.686899pt;}
._5{margin-left:-2.939571pt;}
._1{margin-left:-1.539637pt;}
._0{width:0.981394pt;}
._d{width:2.205557pt;}
._14{width:3.165823pt;}
._7{width:4.186702pt;}
._2{width:5.245303pt;}
._3{width:6.758699pt;}
._19{width:7.737527pt;}
._10{width:8.856498pt;}
._e{width:9.941798pt;}
._f{width:10.974844pt;}
._1a{width:12.519664pt;}
._15{width:14.052561pt;}
._23{width:15.093425pt;}
._1b{width:16.046412pt;}
._13{width:17.188061pt;}
._12{width:18.512942pt;}
._8{width:20.343061pt;}
._9{width:21.267190pt;}
._21{width:23.384238pt;}
._22{width:24.396477pt;}
._20{width:25.422280pt;}
._1f{width:26.362030pt;}
._b{width:27.360596pt;}
._a{width:28.347390pt;}
._1e{width:30.745982pt;}
._1d{width:31.937779pt;}
._17{width:35.242666pt;}
._16{width:36.179533pt;}
._25{width:92.562241pt;}
._11{width:150.746468pt;}
._6{width:165.786455pt;}
._24{width:167.140454pt;}
.fs6{font-size:32.485107pt;}
.fs1{font-size:39.704944pt;}
.fs5{font-size:49.932780pt;}
.fs2{font-size:54.745045pt;}
.fs0{font-size:60.159976pt;}
.fs4{font-size:69.785039pt;}
.fs3{font-size:75.199970pt;}
.y0{bottom:0.000000pt;}
.ye0{bottom:94.719962pt;}
.y136{bottom:99.519960pt;}
.ye1{bottom:101.759959pt;}
.y31{bottom:104.639958pt;}
.y137{bottom:106.399957pt;}
.yb5{bottom:106.719957pt;}
.y60{bottom:109.279956pt;}
.yd4{bottom:109.759956pt;}
.yd5{bottom:116.799953pt;}
.y30{bottom:122.239951pt;}
.y9c{bottom:124.319950pt;}
.y5e{bottom:124.799950pt;}
.ydf{bottom:127.039949pt;}
.y13a{bottom:127.519949pt;}
.yb4{bottom:129.279948pt;}
.y145{bottom:130.559948pt;}
.y157{bottom:131.199948pt;}
.y5f{bottom:131.839947pt;}
.y134{bottom:132.159947pt;}
.y135{bottom:139.199944pt;}
.y9b{bottom:139.359944pt;}
.y73{bottom:139.839944pt;}
.y2f{bottom:139.999944pt;}
.yde{bottom:142.079943pt;}
.yd2{bottom:142.559943pt;}
.y10b{bottom:145.599942pt;}
.y144{bottom:146.719941pt;}
.y74{bottom:146.879941pt;}
.y156{bottom:148.639941pt;}
.yd3{bottom:149.599940pt;}
.y133{bottom:149.919940pt;}
.y14f{bottom:150.399940pt;}
.y9a{bottom:154.399938pt;}
.yb3{bottom:154.559938pt;}
.y5d{bottom:157.119937pt;}
.ydc{bottom:157.599937pt;}
.y2e{bottom:157.759937pt;}
.y143{bottom:162.719935pt;}
.ydd{bottom:164.639934pt;}
.y155{bottom:164.799934pt;}
.y132{bottom:167.679933pt;}
.y14e{bottom:167.839933pt;}
.y99{bottom:169.439932pt;}
.yb2{bottom:169.599932pt;}
.y5c{bottom:172.159931pt;}
.y109{bottom:172.639931pt;}
.yd1{bottom:174.879930pt;}
.ydb{bottom:175.359930pt;}
.y2d{bottom:175.519930pt;}
.y142{bottom:178.879928pt;}
.y10a{bottom:179.679928pt;}
.y154{bottom:180.799928pt;}
.y14d{bottom:183.999926pt;}
.yb1{bottom:184.639926pt;}
.y97{bottom:184.959926pt;}
.y131{bottom:185.439926pt;}
.y5a{bottom:187.199925pt;}
.yd0{bottom:190.399924pt;}
.y98{bottom:191.999923pt;}
.y5b{bottom:192.799923pt;}
.y2c{bottom:193.279923pt;}
.y141{bottom:194.879922pt;}
.y153{bottom:196.959921pt;}
.ye7{bottom:197.439921pt;}
.y14c{bottom:199.999920pt;}
.yaf{bottom:200.159920pt;}
.yd9{bottom:200.479920pt;}
.y72{bottom:202.239919pt;}
.y58{bottom:203.199919pt;}
.yb0{bottom:207.199917pt;}
.yda{bottom:207.359917pt;}
.y59{bottom:210.079916pt;}
.y2b{bottom:211.039916pt;}
.y152{bottom:212.959915pt;}
.y108{bottom:213.439915pt;}
.y14b{bottom:216.159914pt;}
.y96{bottom:217.279913pt;}
.y70{bottom:217.759913pt;}
.yd8{bottom:218.239913pt;}
.y130{bottom:220.959912pt;}
.ye6{bottom:222.559911pt;}
.y71{bottom:224.799910pt;}
.y107{bottom:228.479909pt;}
.y2a{bottom:228.799908pt;}
.ycf{bottom:229.119908pt;}
.y95{bottom:232.319907pt;}
.yae{bottom:232.479907pt;}
.y16b{bottom:234.559906pt;}
.y57{bottom:235.359906pt;}
.y6f{bottom:235.519906pt;}
.yd7{bottom:235.999906pt;}
.ye5{bottom:237.599905pt;}
.y12f{bottom:238.719905pt;}
.y140{bottom:243.519903pt;}
.y106{bottom:244.159902pt;}
.y151{bottom:245.439902pt;}
.y29{bottom:246.559901pt;}
.yce{bottom:246.879901pt;}
.y94{bottom:247.359901pt;}
.yad{bottom:247.519901pt;}
.y14a{bottom:248.319901pt;}
.y56{bottom:250.399900pt;}
.y16a{bottom:251.999899pt;}
.ye4{bottom:253.279899pt;}
.y6e{bottom:253.759898pt;}
.y12e{bottom:256.479897pt;}
.y13f{bottom:257.599897pt;}
.y150{bottom:259.679896pt;}
.y105{bottom:261.919895pt;}
.y93{bottom:262.399895pt;}
.yac{bottom:262.559895pt;}
.y28{bottom:264.319894pt;}
.y149{bottom:264.479894pt;}
.ycd{bottom:264.639894pt;}
.y55{bottom:265.439894pt;}
.y169{bottom:267.999893pt;}
.y6d{bottom:271.519891pt;}
.y12d{bottom:274.239890pt;}
.yab{bottom:277.599889pt;}
.y91{bottom:277.919889pt;}
.y165{bottom:278.239889pt;}
.y104{bottom:279.679888pt;}
.y54{bottom:280.479888pt;}
.y27{bottom:282.079887pt;}
.ycc{bottom:282.399887pt;}
.y168{bottom:284.159886pt;}
.y92{bottom:284.959886pt;}
.y6c{bottom:289.279884pt;}
.y12c{bottom:291.999883pt;}
.ya9{bottom:293.119883pt;}
.y164{bottom:295.679882pt;}
.y52{bottom:296.159882pt;}
.y148{bottom:296.639881pt;}
.y103{bottom:297.439881pt;}
.y26{bottom:299.839880pt;}
.yaa{bottom:300.159880pt;}
.y53{bottom:303.039879pt;}
.y6b{bottom:307.039877pt;}
.y12b{bottom:309.759876pt;}
.y90{bottom:310.239876pt;}
.ya8{bottom:310.879876pt;}
.y163{bottom:311.839875pt;}
.y147{bottom:312.639875pt;}
.y51{bottom:313.919874pt;}
.y15e{bottom:314.719874pt;}
.y101{bottom:315.199874pt;}
.y167{bottom:316.319873pt;}
.y25{bottom:317.599873pt;}
.ycb{bottom:317.759873pt;}
.y102{bottom:322.079871pt;}
.y6a{bottom:324.799870pt;}
.y8e{bottom:325.759870pt;}
.y12a{bottom:327.519869pt;}
.y162{bottom:327.839869pt;}
.ya6{bottom:328.639869pt;}
.ye3{bottom:331.679867pt;}
.y15d{bottom:332.159867pt;}
.y8f{bottom:332.799867pt;}
.y24{bottom:335.199866pt;}
.ya7{bottom:335.519866pt;}
.y139{bottom:340.959864pt;}
.y69{bottom:342.559863pt;}
.y161{bottom:343.999862pt;}
.y129{bottom:345.279862pt;}
.ya5{bottom:345.759862pt;}
.y50{bottom:347.839861pt;}
.y15c{bottom:348.159861pt;}
.y166{bottom:348.799860pt;}
.y100{bottom:350.559860pt;}
.y23{bottom:352.959859pt;}
.yca{bottom:353.279859pt;}
.y8d{bottom:357.919857pt;}
.y138{bottom:358.719857pt;}
.y146{bottom:359.359856pt;}
.y68{bottom:360.319856pt;}
.ya4{bottom:360.799856pt;}
.y128{bottom:362.879855pt;}
.y15b{bottom:364.319854pt;}
.y4f{bottom:365.599854pt;}
.yff{bottom:368.319853pt;}
.y22{bottom:370.719852pt;}
.yc9{bottom:371.039852pt;}
.y8c{bottom:372.959851pt;}
.ya3{bottom:375.839850pt;}
.y160{bottom:376.479849pt;}
.y67{bottom:377.919849pt;}
.y15a{bottom:380.319848pt;}
.y127{bottom:380.639848pt;}
.y4e{bottom:383.359847pt;}
.yfe{bottom:386.079846pt;}
.y21{bottom:388.479845pt;}
.y8a{bottom:388.639845pt;}
.yc8{bottom:388.799844pt;}
.y15f{bottom:390.559844pt;}
.ya2{bottom:390.879844pt;}
.y8b{bottom:395.519842pt;}
.y66{bottom:395.679842pt;}
.y126{bottom:398.399841pt;}
.y4d{bottom:401.119840pt;}
.yfd{bottom:403.839838pt;}
.ya1{bottom:405.919838pt;}
.y20{bottom:406.239838pt;}
.y89{bottom:406.399837pt;}
.yc7{bottom:406.559837pt;}
.y159{bottom:412.959835pt;}
.y65{bottom:413.439835pt;}
.y125{bottom:416.159834pt;}
.y4c{bottom:418.879832pt;}
.ye2{bottom:420.479832pt;}
.ya0{bottom:420.959832pt;}
.yfc{bottom:421.599831pt;}
.y1f{bottom:423.999830pt;}
.yc6{bottom:424.319830pt;}
.y158{bottom:427.039829pt;}
.y64{bottom:431.199828pt;}
.y124{bottom:433.919826pt;}
.y9f{bottom:435.999826pt;}
.y4a{bottom:436.639825pt;}
.yfb{bottom:439.359824pt;}
.y1e{bottom:441.759823pt;}
.yc5{bottom:442.079823pt;}
.y4b{bottom:443.519823pt;}
.y63{bottom:448.959820pt;}
.y9e{bottom:451.039820pt;}
.y123{bottom:451.679819pt;}
.y49{bottom:453.759818pt;}
.y87{bottom:454.399818pt;}
.yfa{bottom:457.119817pt;}
.y1d{bottom:459.519816pt;}
.yc4{bottom:459.839816pt;}
.y88{bottom:461.279815pt;}
.y62{bottom:466.719813pt;}
.y48{bottom:468.799812pt;}
.y122{bottom:469.439812pt;}
.y85{bottom:472.159811pt;}
.yf9{bottom:474.879810pt;}
.y1c{bottom:477.279809pt;}
.yc3{bottom:477.599809pt;}
.y86{bottom:479.039808pt;}
.y47{bottom:484.479806pt;}
.y121{bottom:487.199805pt;}
.y84{bottom:489.919804pt;}
.yf8{bottom:492.639803pt;}
.y1b{bottom:495.039802pt;}
.yc2{bottom:495.359802pt;}
.y46{bottom:502.239799pt;}
.y120{bottom:504.959798pt;}
.y83{bottom:507.679797pt;}
.yf7{bottom:510.399796pt;}
.y1a{bottom:512.799795pt;}
.yc1{bottom:513.119795pt;}
.y45{bottom:519.999792pt;}
.y11f{bottom:522.719791pt;}
.y82{bottom:525.439790pt;}
.yf6{bottom:528.159789pt;}
.y19{bottom:530.559788pt;}
.yc0{bottom:530.719788pt;}
.y44{bottom:537.759785pt;}
.y11e{bottom:540.479784pt;}
.y81{bottom:543.199783pt;}
.yf5{bottom:545.759782pt;}
.y18{bottom:548.319781pt;}
.ybf{bottom:548.479781pt;}
.y43{bottom:555.519778pt;}
.y11d{bottom:558.239777pt;}
.y80{bottom:560.799776pt;}
.yf4{bottom:563.519775pt;}
.y17{bottom:565.919774pt;}
.ybe{bottom:566.239774pt;}
.y42{bottom:573.279771pt;}
.y11c{bottom:575.839770pt;}
.y7f{bottom:578.559769pt;}
.yf3{bottom:581.279767pt;}
.y16{bottom:583.679767pt;}
.ybd{bottom:583.999766pt;}
.y41{bottom:590.879764pt;}
.y11b{bottom:593.599763pt;}
.y7e{bottom:596.319761pt;}
.yf2{bottom:599.039760pt;}
.y15{bottom:601.439759pt;}
.ybc{bottom:601.759759pt;}
.y40{bottom:608.639757pt;}
.y11a{bottom:611.359755pt;}
.y7d{bottom:614.079754pt;}
.y61{bottom:615.679754pt;}
.yf1{bottom:616.799753pt;}
.y14{bottom:619.199752pt;}
.ybb{bottom:619.519752pt;}
.y3f{bottom:626.399749pt;}
.y119{bottom:629.119748pt;}
.y7c{bottom:631.839747pt;}
.y9d{bottom:633.439747pt;}
.yf0{bottom:634.559746pt;}
.y13{bottom:636.959745pt;}
.yba{bottom:637.279745pt;}
.y3e{bottom:644.159742pt;}
.y118{bottom:646.879741pt;}
.y7b{bottom:649.599740pt;}
.yef{bottom:652.319739pt;}
.y12{bottom:654.719738pt;}
.yb9{bottom:655.039738pt;}
.y3d{bottom:661.919735pt;}
.y117{bottom:664.639734pt;}
.y7a{bottom:667.359733pt;}
.yee{bottom:670.079732pt;}
.yb8{bottom:672.799731pt;}
.y11{bottom:673.119731pt;}
.y3c{bottom:679.679728pt;}
.y116{bottom:682.399727pt;}
.y79{bottom:685.119726pt;}
.yed{bottom:687.839725pt;}
.yb7{bottom:689.919724pt;}
.y10{bottom:693.599723pt;}
.y3b{bottom:697.439721pt;}
.y115{bottom:700.159720pt;}
.y77{bottom:702.879719pt;}
.yb6{bottom:704.959718pt;}
.yeb{bottom:705.599718pt;}
.y78{bottom:709.759716pt;}
.yec{bottom:712.479715pt;}
.yf{bottom:713.439715pt;}
.y39{bottom:715.199714pt;}
.y114{bottom:717.919713pt;}
.y76{bottom:719.999712pt;}
.y3a{bottom:722.079711pt;}
.yea{bottom:722.719711pt;}
.ye{bottom:731.519707pt;}
.y13e{bottom:732.639707pt;}
.y37{bottom:732.959707pt;}
.y75{bottom:735.039706pt;}
.y113{bottom:735.679706pt;}
.ye9{bottom:737.759705pt;}
.y38{bottom:739.839704pt;}
.y13d{bottom:750.399700pt;}
.y36{bottom:750.719700pt;}
.ye8{bottom:752.799699pt;}
.y112{bottom:753.439699pt;}
.yd{bottom:753.599699pt;}
.y13c{bottom:768.159693pt;}
.y35{bottom:768.479693pt;}
.y111{bottom:771.199692pt;}
.yc{bottom:774.719690pt;}
.y13b{bottom:785.919686pt;}
.y34{bottom:786.239686pt;}
.y110{bottom:788.959684pt;}
.yb{bottom:790.879684pt;}
.y33{bottom:803.999678pt;}
.y10f{bottom:806.559677pt;}
.ya{bottom:806.879677pt;}
.y32{bottom:821.599671pt;}
.y9{bottom:823.039671pt;}
.y10d{bottom:824.319670pt;}
.y10e{bottom:831.359667pt;}
.y8{bottom:839.359664pt;}
.y10c{bottom:841.599663pt;}
.yd6{bottom:846.399661pt;}
.y7{bottom:857.119657pt;}
.y6{bottom:874.879650pt;}
.y5{bottom:892.639643pt;}
.y4{bottom:910.399636pt;}
.y3{bottom:926.879629pt;}
.y2{bottom:938.719625pt;}
.y1{bottom:951.679619pt;}
.ha{height:31.882356pt;}
.h2{height:38.948844pt;}
.h3{height:38.968231pt;}
.h8{height:49.006293pt;}
.h4{height:53.729268pt;}
.h9{height:59.014351pt;}
.h1{height:59.043726pt;}
.hb{height:60.629976pt;}
.h7{height:68.456124pt;}
.h6{height:68.490199pt;}
.h5{height:75.787470pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:141.119944pt;}
.x12{left:186.239926pt;}
.x33{left:189.439924pt;}
.x13{left:191.359923pt;}
.x27{left:196.319921pt;}
.x34{left:199.359920pt;}
.x31{left:206.719917pt;}
.x22{left:215.359914pt;}
.x2f{left:216.799913pt;}
.x16{left:220.159912pt;}
.x17{left:225.119910pt;}
.x30{left:226.719909pt;}
.xe{left:231.359907pt;}
.x3b{left:235.039906pt;}
.x18{left:236.479905pt;}
.x21{left:241.279903pt;}
.x6{left:268.959900pt;}
.x5{left:290.559884pt;}
.x14{left:293.919882pt;}
.x15{left:301.599879pt;}
.x41{left:302.559879pt;}
.x32{left:311.359875pt;}
.x45{left:321.599856pt;}
.x42{left:327.839869pt;}
.x8{left:330.559868pt;}
.x43{left:331.519867pt;}
.x44{left:341.439863pt;}
.x19{left:391.039844pt;}
.x47{left:392.639843pt;}
.x1f{left:404.799838pt;}
.x20{left:409.759836pt;}
.x23{left:414.559834pt;}
.x24{left:430.559828pt;}
.x25{left:434.239826pt;}
.x26{left:444.159822pt;}
.xf{left:449.439820pt;}
.x10{left:453.119819pt;}
.x11{left:458.079817pt;}
.x28{left:475.199810pt;}
.x48{left:477.119809pt;}
.x29{left:478.879808pt;}
.x9{left:484.319806pt;}
.x2a{left:488.799804pt;}
.x35{left:492.159803pt;}
.x36{left:502.079799pt;}
.xa{left:504.799798pt;}
.xb{left:509.759796pt;}
.x1a{left:520.479792pt;}
.x1b{left:524.159790pt;}
.x1c{left:529.119788pt;}
.x40{left:535.519786pt;}
.x7{left:546.239782pt;}
.x3a{left:548.639781pt;}
.x2d{left:558.559777pt;}
.x2{left:561.759775pt;}
.x2e{left:568.479773pt;}
.xc{left:571.999771pt;}
.xd{left:576.959769pt;}
.x3c{left:582.079767pt;}
.x37{left:589.119764pt;}
.x38{left:592.639763pt;}
.x39{left:602.559759pt;}
.x2b{left:603.999758pt;}
.x2c{left:613.919754pt;}
.x3d{left:636.479745pt;}
.x4{left:643.999742pt;}
.x46{left:648.799740pt;}
.x3{left:651.519732pt;}
.x3e{left:655.999738pt;}
.x3f{left:665.919734pt;}
.x1d{left:669.119732pt;}
.x1e{left:674.079730pt;}
.x49{left:675.839730pt;}
}




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