
    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_c62eff609c2e903ac6ea2467.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.079000;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_755edde18193063474682765.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.137000;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_c43fa7ec51318cf5bc88920e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.137000;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_519105e60dde98c9d14a18fe.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.069000;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_96701ab13ced925452fdcb13.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.059000;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_edb56aa7a7fb2fe480529290.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.069000;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_499cb5e689b6245db5dc26f0.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.059000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_2370d938bd9a0230966fa288.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.075000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_65a61ab8568c8f7caf8b4a85.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.121000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_e93051bfc88258ceb76c7f05.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.968000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_8936fb854614282bc0458d2e.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.075000;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:ffc;src:url('chunks/assets/font_0610ccb3ea622beb386786a8.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.139000;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:ffd;src:url('chunks/assets/font_34238365ec10f566db832299.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.957000;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:ffe;src:url('chunks/assets/font_07ac8af291f085b6c6692c5a.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.005000;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.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:-22.751999px;}
.ws0{word-spacing:-20.992499px;}
.ws5{word-spacing:-18.339659px;}
.ws1{word-spacing:-17.999999px;}
.ws2{word-spacing:-16.492499px;}
.ws7{word-spacing:-14.996249px;}
.ws4{word-spacing:-12.000262px;}
.ws8{word-spacing:-12.000149px;}
.wsb{word-spacing:-10.500723px;}
.ws9{word-spacing:-6.993414px;}
.wsa{word-spacing:-5.899237px;}
.ws3{word-spacing:0.000000px;}
._2a{margin-left:-943.722826px;}
._29{margin-left:-934.421057px;}
._15{margin-left:-1.008382px;}
._0{width:1.139747px;}
._2{width:2.347961px;}
._19{width:3.584655px;}
._f{width:4.921951px;}
._8{width:6.590050px;}
._e{width:8.207075px;}
._4{width:9.750088px;}
._14{width:11.570361px;}
._1b{width:12.848811px;}
._9{width:14.198887px;}
._5{width:15.374589px;}
._1{width:17.836590px;}
._3{width:19.644368px;}
._d{width:21.181216px;}
._16{width:22.388989px;}
._10{width:23.692544px;}
._17{width:24.749033px;}
._1a{width:26.120304px;}
._11{width:27.518139px;}
._18{width:28.812923px;}
._1c{width:29.818989px;}
._b{width:31.203045px;}
._7{width:32.366907px;}
._6{width:33.943201px;}
._13{width:35.759613px;}
._28{width:36.903865px;}
._2c{width:38.543665px;}
._26{width:39.891006px;}
._24{width:40.953671px;}
._c{width:42.239003px;}
._23{width:43.576395px;}
._1d{width:44.664508px;}
._25{width:45.926188px;}
._2d{width:48.531254px;}
._12{width:49.543150px;}
._31{width:50.707048px;}
._30{width:51.882102px;}
._2f{width:53.276352px;}
._1e{width:55.096698px;}
._27{width:59.765970px;}
._22{width:60.780292px;}
._32{width:62.270673px;}
._a{width:63.277813px;}
._2b{width:64.363409px;}
._2e{width:65.536767px;}
._21{width:72.172930px;}
._20{width:77.234497px;}
._1f{width:102.347780px;}
._33{width:156.246056px;}
.fc3{color:transparent;}
.fc2{color:rgb(1,52,44);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,76,62);}
.fs8{font-size:18.668471px;}
.fs7{font-size:27.973655px;}
.fs9{font-size:29.739314px;}
.fsa{font-size:42.002892px;}
.fs6{font-size:48.000598px;}
.fs4{font-size:48.001047px;}
.fs3{font-size:53.999998px;}
.fs5{font-size:59.984997px;}
.fs1{font-size:65.969996px;}
.fs2{font-size:71.999997px;}
.fs0{font-size:83.969997px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.y135{bottom:5.720482px;}
.y134{bottom:15.633587px;}
.y133{bottom:25.546692px;}
.y130{bottom:30.015019px;}
.y132{bottom:35.459796px;}
.y12e{bottom:35.977753px;}
.y131{bottom:45.372901px;}
.y12d{bottom:54.326772px;}
.y12f{bottom:55.199585px;}
.y30{bottom:63.523113px;}
.y12c{bottom:71.458487px;}
.ya0{bottom:74.508374px;}
.yd5{bottom:78.051273px;}
.y2f{bottom:86.023112px;}
.yd4{bottom:100.551272px;}
.y2e{bottom:108.523111px;}
.y94{bottom:111.345187px;}
.y7b{bottom:122.509903px;}
.yd3{bottom:123.051271px;}
.y2d{bottom:131.023111px;}
.y93{bottom:133.845186px;}
.y7a{bottom:138.510252px;}
.y136{bottom:144.297559px;}
.yd2{bottom:145.551270px;}
.y2c{bottom:153.523110px;}
.y92{bottom:156.345185px;}
.yd1{bottom:168.051269px;}
.y4d{bottom:174.178006px;}
.y2b{bottom:176.023109px;}
.y78{bottom:177.689908px;}
.y91{bottom:178.845185px;}
.y12b{bottom:180.941383px;}
.yd0{bottom:190.551268px;}
.y77{bottom:193.690257px;}
.y2a{bottom:198.523108px;}
.ye6{bottom:201.057903px;}
.y90{bottom:201.345184px;}
.y128{bottom:202.251952px;}
.ycf{bottom:213.051267px;}
.y44{bottom:213.259995px;}
.y125{bottom:215.602119px;}
.ye5{bottom:217.058252px;}
.y29{bottom:221.023107px;}
.y8f{bottom:223.845183px;}
.yce{bottom:235.551266px;}
.y43{bottom:235.759994px;}
.y67{bottom:237.832730px;}
.y124{bottom:238.102118px;}
.y28{bottom:243.523106px;}
.y8e{bottom:246.345182px;}
.yc7{bottom:249.206462px;}
.y12a{bottom:257.854444px;}
.ycd{bottom:258.051265px;}
.y42{bottom:258.259993px;}
.y66{bottom:260.332729px;}
.y123{bottom:260.602117px;}
.y27{bottom:266.023105px;}
.y8d{bottom:268.845181px;}
.yc6{bottom:271.706461px;}
.ycc{bottom:280.551264px;}
.y41{bottom:280.759992px;}
.y129{bottom:282.437556px;}
.y65{bottom:282.832728px;}
.y122{bottom:283.102116px;}
.y26{bottom:288.523104px;}
.y8c{bottom:291.345180px;}
.yc5{bottom:294.206460px;}
.ycb{bottom:303.051263px;}
.y40{bottom:303.259991px;}
.y64{bottom:305.332727px;}
.y121{bottom:305.602115px;}
.y1b{bottom:310.082675px;}
.y25{bottom:311.023103px;}
.y8b{bottom:313.845179px;}
.yc4{bottom:316.706459px;}
.yca{bottom:325.551262px;}
.y3f{bottom:325.759990px;}
.y63{bottom:327.832726px;}
.y120{bottom:328.102114px;}
.y1a{bottom:332.582674px;}
.y24{bottom:333.523102px;}
.y8a{bottom:336.345178px;}
.yf6{bottom:337.574974px;}
.yc3{bottom:339.206458px;}
.y3e{bottom:348.259989px;}
.y62{bottom:350.332725px;}
.y11f{bottom:350.602113px;}
.y19{bottom:355.082673px;}
.y23{bottom:356.023101px;}
.y89{bottom:358.845177px;}
.yf5{bottom:360.074973px;}
.yc2{bottom:361.706457px;}
.yc9{bottom:370.551261px;}
.y9d{bottom:372.788552px;}
.y61{bottom:372.832724px;}
.y11e{bottom:373.102112px;}
.y18{bottom:377.582672px;}
.y22{bottom:378.523100px;}
.y88{bottom:381.345176px;}
.yf4{bottom:382.574972px;}
.yc1{bottom:384.206456px;}
.y50{bottom:390.935036px;}
.yc8{bottom:393.051260px;}
.y9c{bottom:395.288552px;}
.y60{bottom:395.332724px;}
.y11d{bottom:395.602112px;}
.y17{bottom:400.082671px;}
.y21{bottom:401.023099px;}
.y87{bottom:403.845175px;}
.yf3{bottom:405.074971px;}
.yc0{bottom:406.706455px;}
.y9b{bottom:417.788551px;}
.y5f{bottom:417.832723px;}
.y79{bottom:419.758980px;}
.y16{bottom:422.582670px;}
.yf2{bottom:427.574970px;}
.ybf{bottom:429.206454px;}
.y4b{bottom:432.185135px;}
.y9a{bottom:440.288550px;}
.y5e{bottom:440.332722px;}
.y15{bottom:445.082669px;}
.y13{bottom:446.421947px;}
.y7f{bottom:449.895113px;}
.yf1{bottom:450.074969px;}
.y99{bottom:462.788549px;}
.y5d{bottom:462.832721px;}
.y14{bottom:467.582669px;}
.yf0{bottom:472.574968px;}
.ye2{bottom:474.882244px;}
.y4c{bottom:475.966714px;}
.y98{bottom:485.288548px;}
.y5c{bottom:485.332720px;}
.yef{bottom:495.074967px;}
.y86{bottom:495.945159px;}
.y12{bottom:502.365728px;}
.y97{bottom:507.788547px;}
.y5b{bottom:507.832719px;}
.ydd{bottom:516.926668px;}
.yee{bottom:517.574966px;}
.y85{bottom:518.445158px;}
.y96{bottom:530.288546px;}
.y5a{bottom:530.332718px;}
.ye4{bottom:531.017479px;}
.ydc{bottom:539.426667px;}
.yed{bottom:540.074965px;}
.y84{bottom:540.945157px;}
.y95{bottom:552.788545px;}
.y59{bottom:552.832717px;}
.ydb{bottom:561.926666px;}
.yec{bottom:562.574965px;}
.y83{bottom:563.445157px;}
.y127{bottom:570.474372px;}
.ybe{bottom:573.899743px;}
.y58{bottom:575.332716px;}
.yda{bottom:584.426665px;}
.yeb{bottom:585.074964px;}
.y82{bottom:585.945156px;}
.y126{bottom:586.474721px;}
.ybd{bottom:596.399742px;}
.y80{bottom:598.838591px;}
.yd9{bottom:606.926664px;}
.yea{bottom:607.574963px;}
.y81{bottom:608.445155px;}
.y75{bottom:618.007654px;}
.ybc{bottom:618.899741px;}
.y11c{bottom:625.124901px;}
.yd8{bottom:629.426663px;}
.ye9{bottom:630.074962px;}
.ybb{bottom:641.399740px;}
.y9f{bottom:646.838654px;}
.y11b{bottom:647.624900px;}
.y7e{bottom:654.495089px;}
.y76{bottom:661.174840px;}
.yba{bottom:663.899740px;}
.y11a{bottom:670.124899px;}
.y10d{bottom:672.750015px;}
.yd7{bottom:674.426661px;}
.yb9{bottom:686.399739px;}
.y119{bottom:692.624898px;}
.yd6{bottom:696.926660px;}
.y73{bottom:698.955537px;}
.y7d{bottom:699.120219px;}
.y20{bottom:703.950130px;}
.yb8{bottom:708.899738px;}
.y10c{bottom:712.242064px;}
.y7c{bottom:715.120568px;}
.y118{bottom:715.124897px;}
.y72{bottom:721.455536px;}
.y1f{bottom:726.450129px;}
.yb7{bottom:731.399737px;}
.y10b{bottom:734.742063px;}
.y117{bottom:737.624896px;}
.y71{bottom:743.955535px;}
.y1e{bottom:748.950128px;}
.yb6{bottom:753.899736px;}
.y4a{bottom:757.198993px;}
.y10a{bottom:757.242062px;}
.y116{bottom:760.124895px;}
.y70{bottom:766.455534px;}
.y1d{bottom:771.450127px;}
.yb5{bottom:776.399735px;}
.y109{bottom:779.742061px;}
.y115{bottom:782.624894px;}
.y6f{bottom:788.955534px;}
.y10{bottom:793.005436px;}
.y1c{bottom:793.950127px;}
.yb4{bottom:798.899734px;}
.y108{bottom:802.242060px;}
.y114{bottom:805.124893px;}
.y6e{bottom:811.455533px;}
.yf{bottom:815.505435px;}
.yb3{bottom:821.399733px;}
.y107{bottom:824.742059px;}
.y3d{bottom:825.285836px;}
.y113{bottom:827.624892px;}
.ye8{bottom:833.199164px;}
.y6d{bottom:833.955532px;}
.yc{bottom:834.780418px;}
.ye{bottom:838.005434px;}
.y106{bottom:847.242058px;}
.y3c{bottom:847.785835px;}
.ye7{bottom:849.199513px;}
.y112{bottom:850.124891px;}
.y6c{bottom:856.455531px;}
.yb{bottom:859.530417px;}
.yd{bottom:860.505433px;}
.ye1{bottom:865.199758px;}
.y105{bottom:869.742057px;}
.y3b{bottom:870.285834px;}
.y111{bottom:872.624890px;}
.y6b{bottom:878.955530px;}
.yb2{bottom:891.876793px;}
.y104{bottom:892.242056px;}
.y3a{bottom:892.785833px;}
.y110{bottom:895.124890px;}
.y6a{bottom:901.455529px;}
.ydf{bottom:908.999721px;}
.ya{bottom:912.941616px;}
.yb1{bottom:914.376792px;}
.y103{bottom:914.742055px;}
.y39{bottom:915.285832px;}
.y10f{bottom:917.624889px;}
.y9e{bottom:918.449344px;}
.y69{bottom:923.955528px;}
.yde{bottom:931.499720px;}
.y9{bottom:935.441615px;}
.yb0{bottom:936.876791px;}
.y102{bottom:937.242055px;}
.y38{bottom:937.785831px;}
.y10e{bottom:940.124888px;}
.y68{bottom:946.455527px;}
.y8{bottom:957.941614px;}
.yaf{bottom:959.376790px;}
.y101{bottom:959.742054px;}
.y57{bottom:968.955526px;}
.ye0{bottom:975.299727px;}
.y7{bottom:980.441614px;}
.y4f{bottom:980.460816px;}
.yae{bottom:981.876789px;}
.y100{bottom:982.242053px;}
.yfd{bottom:983.683478px;}
.y56{bottom:991.455525px;}
.y6{bottom:1002.941613px;}
.yad{bottom:1004.376789px;}
.yff{bottom:1004.742052px;}
.y55{bottom:1013.955524px;}
.y37{bottom:1019.060619px;}
.ya7{bottom:1019.246991px;}
.y49{bottom:1023.648783px;}
.y5{bottom:1025.441612px;}
.yac{bottom:1026.876788px;}
.yfc{bottom:1027.242051px;}
.y54{bottom:1036.455523px;}
.y36{bottom:1041.560618px;}
.ya6{bottom:1041.746990px;}
.y48{bottom:1046.148782px;}
.y4{bottom:1047.941611px;}
.yab{bottom:1049.376787px;}
.yfb{bottom:1049.742050px;}
.y53{bottom:1058.955522px;}
.y35{bottom:1064.060617px;}
.ya5{bottom:1064.246989px;}
.y47{bottom:1068.648781px;}
.yaa{bottom:1071.876786px;}
.yfa{bottom:1072.242049px;}
.y52{bottom:1081.455521px;}
.y34{bottom:1086.560616px;}
.ya4{bottom:1086.746988px;}
.y46{bottom:1091.148780px;}
.y11{bottom:1094.366622px;}
.ya9{bottom:1094.376785px;}
.yf9{bottom:1094.742048px;}
.y51{bottom:1103.955520px;}
.y33{bottom:1109.060615px;}
.ya3{bottom:1109.246987px;}
.y45{bottom:1113.648779px;}
.ya8{bottom:1116.876784px;}
.yfe{bottom:1117.242047px;}
.y32{bottom:1131.560614px;}
.ya2{bottom:1131.746986px;}
.y3{bottom:1139.193817px;}
.yf8{bottom:1139.742046px;}
.y74{bottom:1146.630505px;}
.y4e{bottom:1153.085611px;}
.ye3{bottom:1153.271983px;}
.y31{bottom:1154.060614px;}
.ya1{bottom:1154.246986px;}
.yf7{bottom:1162.242045px;}
.y2{bottom:1168.443815px;}
.h10{height:15.028119px;}
.hf{height:24.924527px;}
.h12{height:26.497729px;}
.h13{height:37.424576px;}
.h9{height:39.024851px;}
.hb{height:42.000916px;}
.he{height:42.768533px;}
.h7{height:42.768933px;}
.h6{height:48.113998px;}
.hd{height:53.446632px;}
.h8{height:53.633607px;}
.h11{height:53.639998px;}
.ha{height:57.723747px;}
.hc{height:57.959998px;}
.h4{height:58.779267px;}
.h5{height:59.615998px;}
.h3{height:69.527157px;}
.h1{height:1263.000000px;}
.h2{height:1263.374947px;}
.h0{height:1263.374968px;}
.w2{width:200.519992px;}
.w1{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:41.152553px;}
.x5{left:44.296181px;}
.x9{left:56.262503px;}
.x8{left:71.573049px;}
.x1{left:82.875783px;}
.xf{left:119.519995px;}
.x10{left:127.235486px;}
.x2{left:396.065229px;}
.x7{left:469.058798px;}
.x4{left:470.283378px;}
.xb{left:471.628194px;}
.xc{left:477.269847px;}
.xa{left:497.095906px;}
.x6{left:498.196253px;}
.xe{left:618.425974px;}
.xd{left:620.329942px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws6{word-spacing:-20.223999pt;}
.ws0{word-spacing:-18.659999pt;}
.ws5{word-spacing:-16.301919pt;}
.ws1{word-spacing:-15.999999pt;}
.ws2{word-spacing:-14.659999pt;}
.ws7{word-spacing:-13.329999pt;}
.ws4{word-spacing:-10.666899pt;}
.ws8{word-spacing:-10.666800pt;}
.wsb{word-spacing:-9.333976pt;}
.ws9{word-spacing:-6.216368pt;}
.wsa{word-spacing:-5.243766pt;}
.ws3{word-spacing:0.000000pt;}
._2a{margin-left:-838.864734pt;}
._29{margin-left:-830.596495pt;}
._15{margin-left:-0.896339pt;}
._0{width:1.013109pt;}
._2{width:2.087076pt;}
._19{width:3.186360pt;}
._f{width:4.375068pt;}
._8{width:5.857822pt;}
._e{width:7.295178pt;}
._4{width:8.666745pt;}
._14{width:10.284765pt;}
._1b{width:11.421166pt;}
._9{width:12.621233pt;}
._5{width:13.666301pt;}
._1{width:15.854747pt;}
._3{width:17.461660pt;}
._d{width:18.827747pt;}
._16{width:19.901324pt;}
._10{width:21.060039pt;}
._17{width:21.999141pt;}
._1a{width:23.218048pt;}
._11{width:24.460568pt;}
._18{width:25.611487pt;}
._1c{width:26.505768pt;}
._b{width:27.736040pt;}
._7{width:28.770584pt;}
._6{width:30.171734pt;}
._13{width:31.786323pt;}
._28{width:32.803435pt;}
._2c{width:34.261036pt;}
._26{width:35.458672pt;}
._24{width:36.403263pt;}
._c{width:37.545781pt;}
._23{width:38.734573pt;}
._1d{width:39.701785pt;}
._25{width:40.823278pt;}
._2d{width:43.138892pt;}
._12{width:44.038355pt;}
._31{width:45.072932pt;}
._30{width:46.117424pt;}
._2f{width:47.356757pt;}
._1e{width:48.974842pt;}
._27{width:53.125306pt;}
._22{width:54.026927pt;}
._32{width:55.351709pt;}
._a{width:56.246945pt;}
._2b{width:57.211919pt;}
._2e{width:58.254904pt;}
._21{width:64.153716pt;}
._20{width:68.652887pt;}
._1f{width:90.975805pt;}
._33{width:138.885383pt;}
.fs8{font-size:16.594196pt;}
.fs7{font-size:24.865471pt;}
.fs9{font-size:26.434946pt;}
.fsa{font-size:37.335904pt;}
.fs6{font-size:42.667198pt;}
.fs4{font-size:42.667598pt;}
.fs3{font-size:47.999998pt;}
.fs5{font-size:53.319997pt;}
.fs1{font-size:58.639997pt;}
.fs2{font-size:63.999997pt;}
.fs0{font-size:74.639997pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.y135{bottom:5.084873pt;}
.y134{bottom:13.896522pt;}
.y133{bottom:22.708170pt;}
.y130{bottom:26.680017pt;}
.y132{bottom:31.519819pt;}
.y12e{bottom:31.980225pt;}
.y131{bottom:40.331468pt;}
.y12d{bottom:48.290464pt;}
.y12f{bottom:49.066298pt;}
.y30{bottom:56.464990pt;}
.y12c{bottom:63.518656pt;}
.ya0{bottom:66.229666pt;}
.yd5{bottom:69.378909pt;}
.y2f{bottom:76.464989pt;}
.yd4{bottom:89.378908pt;}
.y2e{bottom:96.464988pt;}
.y94{bottom:98.973500pt;}
.y7b{bottom:108.897691pt;}
.yd3{bottom:109.378907pt;}
.y2d{bottom:116.464987pt;}
.y93{bottom:118.973499pt;}
.y7a{bottom:123.120224pt;}
.y136{bottom:128.264497pt;}
.yd2{bottom:129.378907pt;}
.y2c{bottom:136.464986pt;}
.y92{bottom:138.973498pt;}
.yd1{bottom:149.378906pt;}
.y4d{bottom:154.824894pt;}
.y2b{bottom:156.464985pt;}
.y78{bottom:157.946585pt;}
.y91{bottom:158.973497pt;}
.y12b{bottom:160.836785pt;}
.yd0{bottom:169.378905pt;}
.y77{bottom:172.169118pt;}
.y2a{bottom:176.464985pt;}
.ye6{bottom:178.718136pt;}
.y90{bottom:178.973497pt;}
.y128{bottom:179.779513pt;}
.ycf{bottom:189.378904pt;}
.y44{bottom:189.564440pt;}
.y125{bottom:191.646328pt;}
.ye5{bottom:192.940669pt;}
.y29{bottom:196.464984pt;}
.y8f{bottom:198.973496pt;}
.yce{bottom:209.378903pt;}
.y43{bottom:209.564439pt;}
.y67{bottom:211.406871pt;}
.y124{bottom:211.646327pt;}
.y28{bottom:216.464983pt;}
.y8e{bottom:218.973495pt;}
.yc7{bottom:221.516855pt;}
.y12a{bottom:229.203950pt;}
.ycd{bottom:229.378902pt;}
.y42{bottom:229.564438pt;}
.y66{bottom:231.406870pt;}
.y123{bottom:231.646326pt;}
.y27{bottom:236.464982pt;}
.y8d{bottom:238.973494pt;}
.yc6{bottom:241.516854pt;}
.ycc{bottom:249.378902pt;}
.y41{bottom:249.564438pt;}
.y129{bottom:251.055606pt;}
.y65{bottom:251.406870pt;}
.y122{bottom:251.646326pt;}
.y26{bottom:256.464981pt;}
.y8c{bottom:258.973493pt;}
.yc5{bottom:261.516853pt;}
.ycb{bottom:269.378901pt;}
.y40{bottom:269.564437pt;}
.y64{bottom:271.406869pt;}
.y121{bottom:271.646325pt;}
.y1b{bottom:275.629045pt;}
.y25{bottom:276.464980pt;}
.y8b{bottom:278.973492pt;}
.yc4{bottom:281.516852pt;}
.yca{bottom:289.378900pt;}
.y3f{bottom:289.564436pt;}
.y63{bottom:291.406868pt;}
.y120{bottom:291.646324pt;}
.y1a{bottom:295.629044pt;}
.y24{bottom:296.464980pt;}
.y8a{bottom:298.973492pt;}
.yf6{bottom:300.066643pt;}
.yc3{bottom:301.516851pt;}
.y3e{bottom:309.564435pt;}
.y62{bottom:311.406867pt;}
.y11f{bottom:311.646323pt;}
.y19{bottom:315.629043pt;}
.y23{bottom:316.464979pt;}
.y89{bottom:318.973491pt;}
.yf5{bottom:320.066643pt;}
.yc2{bottom:321.516851pt;}
.yc9{bottom:329.378898pt;}
.y9d{bottom:331.367602pt;}
.y61{bottom:331.406866pt;}
.y11e{bottom:331.646322pt;}
.y18{bottom:335.629042pt;}
.y22{bottom:336.464978pt;}
.y88{bottom:338.973490pt;}
.yf4{bottom:340.066642pt;}
.yc1{bottom:341.516850pt;}
.y50{bottom:347.497810pt;}
.yc8{bottom:349.378897pt;}
.y9c{bottom:351.367601pt;}
.y60{bottom:351.406865pt;}
.y11d{bottom:351.646321pt;}
.y17{bottom:355.629041pt;}
.y21{bottom:356.464977pt;}
.y87{bottom:358.973489pt;}
.yf3{bottom:360.066641pt;}
.yc0{bottom:361.516849pt;}
.y9b{bottom:371.367601pt;}
.y5f{bottom:371.406865pt;}
.y79{bottom:373.119093pt;}
.y16{bottom:375.629040pt;}
.yf2{bottom:380.066640pt;}
.ybf{bottom:381.516848pt;}
.y4b{bottom:384.164565pt;}
.y9a{bottom:391.367600pt;}
.y5e{bottom:391.406864pt;}
.y15{bottom:395.629040pt;}
.y13{bottom:396.819508pt;}
.y7f{bottom:399.906767pt;}
.yf1{bottom:400.066639pt;}
.y99{bottom:411.367599pt;}
.y5d{bottom:411.406863pt;}
.y14{bottom:415.629039pt;}
.yf0{bottom:420.066638pt;}
.ye2{bottom:422.117550pt;}
.y4c{bottom:423.081523pt;}
.y98{bottom:431.367598pt;}
.y5c{bottom:431.406862pt;}
.yef{bottom:440.066638pt;}
.y86{bottom:440.840142pt;}
.y12{bottom:446.547314pt;}
.y97{bottom:451.367597pt;}
.y5b{bottom:451.406861pt;}
.ydd{bottom:459.490371pt;}
.yee{bottom:460.066637pt;}
.y85{bottom:460.840141pt;}
.y96{bottom:471.367596pt;}
.y5a{bottom:471.406860pt;}
.ye4{bottom:472.015537pt;}
.ydc{bottom:479.490370pt;}
.yed{bottom:480.066636pt;}
.y84{bottom:480.840140pt;}
.y95{bottom:491.367596pt;}
.y59{bottom:491.406860pt;}
.ydb{bottom:499.490370pt;}
.yec{bottom:500.066635pt;}
.y83{bottom:500.840139pt;}
.y127{bottom:507.088331pt;}
.ybe{bottom:510.133105pt;}
.y58{bottom:511.406859pt;}
.yda{bottom:519.490369pt;}
.yeb{bottom:520.066634pt;}
.y82{bottom:520.840138pt;}
.y126{bottom:521.310863pt;}
.ybd{bottom:530.133104pt;}
.y80{bottom:532.300970pt;}
.yd9{bottom:539.490368pt;}
.yea{bottom:540.066633pt;}
.y81{bottom:540.840137pt;}
.y75{bottom:549.340137pt;}
.ybc{bottom:550.133103pt;}
.y11c{bottom:555.666578pt;}
.yd8{bottom:559.490367pt;}
.ye9{bottom:560.066633pt;}
.ybb{bottom:570.133103pt;}
.y9f{bottom:574.967693pt;}
.y11b{bottom:575.666578pt;}
.y7e{bottom:581.773413pt;}
.y76{bottom:587.710969pt;}
.yba{bottom:590.133102pt;}
.y11a{bottom:595.666577pt;}
.y10d{bottom:598.000013pt;}
.yd7{bottom:599.490365pt;}
.yb9{bottom:610.133101pt;}
.y119{bottom:615.666576pt;}
.yd6{bottom:619.490365pt;}
.y73{bottom:621.293811pt;}
.y7d{bottom:621.440195pt;}
.y20{bottom:625.733449pt;}
.yb8{bottom:630.133100pt;}
.y10c{bottom:633.104057pt;}
.y7c{bottom:635.662727pt;}
.y118{bottom:635.666575pt;}
.y72{bottom:641.293810pt;}
.y1f{bottom:645.733448pt;}
.yb7{bottom:650.133099pt;}
.y10b{bottom:653.104056pt;}
.y117{bottom:655.666574pt;}
.y71{bottom:661.293809pt;}
.y1e{bottom:665.733447pt;}
.yb6{bottom:670.133098pt;}
.y4a{bottom:673.065772pt;}
.y10a{bottom:673.104055pt;}
.y116{bottom:675.666573pt;}
.y70{bottom:681.293808pt;}
.y1d{bottom:685.733447pt;}
.yb5{bottom:690.133098pt;}
.y109{bottom:693.104054pt;}
.y115{bottom:695.666573pt;}
.y6f{bottom:701.293808pt;}
.y10{bottom:704.893721pt;}
.y1c{bottom:705.733446pt;}
.yb4{bottom:710.133097pt;}
.y108{bottom:713.104053pt;}
.y114{bottom:715.666572pt;}
.y6e{bottom:721.293807pt;}
.yf{bottom:724.893720pt;}
.yb3{bottom:730.133096pt;}
.y107{bottom:733.104053pt;}
.y3d{bottom:733.587409pt;}
.y113{bottom:735.666571pt;}
.ye8{bottom:740.621479pt;}
.y6d{bottom:741.293806pt;}
.yc{bottom:742.027038pt;}
.ye{bottom:744.893719pt;}
.y106{bottom:753.104052pt;}
.y3c{bottom:753.587409pt;}
.ye7{bottom:754.844012pt;}
.y112{bottom:755.666570pt;}
.y6c{bottom:761.293805pt;}
.yb{bottom:764.027037pt;}
.yd{bottom:764.893719pt;}
.ye1{bottom:769.066451pt;}
.y105{bottom:773.104051pt;}
.y3b{bottom:773.587408pt;}
.y111{bottom:775.666569pt;}
.y6b{bottom:781.293804pt;}
.yb2{bottom:792.779372pt;}
.y104{bottom:793.104050pt;}
.y3a{bottom:793.587407pt;}
.y110{bottom:795.666568pt;}
.y6a{bottom:801.293803pt;}
.ydf{bottom:807.999752pt;}
.ya{bottom:811.503659pt;}
.yb1{bottom:812.779371pt;}
.y103{bottom:813.104049pt;}
.y39{bottom:813.587406pt;}
.y10f{bottom:815.666568pt;}
.y9e{bottom:816.399417pt;}
.y69{bottom:821.293803pt;}
.yde{bottom:827.999751pt;}
.y9{bottom:831.503658pt;}
.yb0{bottom:832.779370pt;}
.y102{bottom:833.104048pt;}
.y38{bottom:833.587405pt;}
.y10e{bottom:835.666567pt;}
.y68{bottom:841.293802pt;}
.y8{bottom:851.503657pt;}
.yaf{bottom:852.779369pt;}
.y101{bottom:853.104048pt;}
.y57{bottom:861.293801pt;}
.ye0{bottom:866.933090pt;}
.y7{bottom:871.503656pt;}
.y4f{bottom:871.520725pt;}
.yae{bottom:872.779368pt;}
.y100{bottom:873.104047pt;}
.yfd{bottom:874.385314pt;}
.y56{bottom:881.293800pt;}
.y6{bottom:891.503656pt;}
.yad{bottom:892.779368pt;}
.yff{bottom:893.104046pt;}
.y55{bottom:901.293799pt;}
.y37{bottom:905.831661pt;}
.ya7{bottom:905.997325pt;}
.y49{bottom:909.910029pt;}
.y5{bottom:911.503655pt;}
.yac{bottom:912.779367pt;}
.yfc{bottom:913.104045pt;}
.y54{bottom:921.293798pt;}
.y36{bottom:925.831661pt;}
.ya6{bottom:925.997325pt;}
.y48{bottom:929.910028pt;}
.y4{bottom:931.503654pt;}
.yab{bottom:932.779366pt;}
.yfb{bottom:933.104044pt;}
.y53{bottom:941.293798pt;}
.y35{bottom:945.831660pt;}
.ya5{bottom:945.997324pt;}
.y47{bottom:949.910028pt;}
.yaa{bottom:952.779365pt;}
.yfa{bottom:953.104043pt;}
.y52{bottom:961.293797pt;}
.y34{bottom:965.831659pt;}
.ya4{bottom:965.997323pt;}
.y46{bottom:969.910027pt;}
.y11{bottom:972.770331pt;}
.ya9{bottom:972.779364pt;}
.yf9{bottom:973.104043pt;}
.y51{bottom:981.293796pt;}
.y33{bottom:985.831658pt;}
.ya3{bottom:985.997322pt;}
.y45{bottom:989.910026pt;}
.ya8{bottom:992.779363pt;}
.yfe{bottom:993.104042pt;}
.y32{bottom:1005.831657pt;}
.ya2{bottom:1005.997321pt;}
.y3{bottom:1012.616726pt;}
.yf8{bottom:1013.104041pt;}
.y74{bottom:1019.227116pt;}
.y4e{bottom:1024.964988pt;}
.ye3{bottom:1025.130652pt;}
.y31{bottom:1025.831656pt;}
.ya1{bottom:1025.997320pt;}
.yf7{bottom:1033.104040pt;}
.y2{bottom:1038.616725pt;}
.h10{height:13.358328pt;}
.hf{height:22.155135pt;}
.h12{height:23.553537pt;}
.h13{height:33.266290pt;}
.h9{height:34.688757pt;}
.hb{height:37.334148pt;}
.he{height:38.016474pt;}
.h7{height:38.016829pt;}
.h6{height:42.767998pt;}
.hd{height:47.508118pt;}
.h8{height:47.674317pt;}
.h11{height:47.679998pt;}
.ha{height:51.309997pt;}
.hc{height:51.519998pt;}
.h4{height:52.248237pt;}
.h5{height:52.991998pt;}
.h3{height:61.801917pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w2{width:178.239993pt;}
.w1{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:36.580047pt;}
.x5{left:39.374383pt;}
.x9{left:50.011114pt;}
.x8{left:63.620488pt;}
.x1{left:73.667363pt;}
.xf{left:106.239996pt;}
.x10{left:113.098210pt;}
.x2{left:352.057981pt;}
.x7{left:416.941154pt;}
.x4{left:418.029669pt;}
.xb{left:419.225061pt;}
.xc{left:424.239864pt;}
.xa{left:441.863028pt;}
.x6{left:442.841114pt;}
.xe{left:549.711977pt;}
.xd{left:551.404393pt;}
}




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