
    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_24167b7ac1d936d389f4ef3f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.062000;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_c2592d8d81e0a7fb5b20cc9f.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_79e3fa7864e9584ff578beb6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.061000;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_9bd08270c016f5c6a0bb7644.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.062000;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_ea1f420e98f97bf1f4201905.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.061000;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_c73d4ce94f9b56f29bcd30a0.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_824efd8d7b4f20a9a9495bc5.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.061000;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_71a16230d0324428f8de0b6c.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_9d34637db2fbd29ee17f9581.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.123000;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_20dd7fa26ee1c1f9658d3d89.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_30391474a6bf28b82a3cf155.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_42ab0e13a826f0afaafe1fad.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.123000;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_e7ed9e1d076d63a0249c0c80.woff2')format("woff");}.ffd{font-family:ffd;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;}
}
.ws3{word-spacing:-18.339659px;}
.ws4{word-spacing:-17.999999px;}
.ws0{word-spacing:-16.492499px;}
.ws2{word-spacing:-15.738749px;}
.ws6{word-spacing:-14.996249px;}
.ws8{word-spacing:-10.500723px;}
.ws5{word-spacing:-6.993414px;}
.ws7{word-spacing:-4.667118px;}
.ws1{word-spacing:0.000000px;}
._19{margin-left:-1.000063px;}
._4{width:1.153333px;}
._1{width:2.265158px;}
._5{width:3.819852px;}
._3{width:4.947582px;}
._7{width:6.099635px;}
._1e{width:7.180962px;}
._0{width:8.182051px;}
._2{width:9.909801px;}
._9{width:11.123197px;}
._18{width:12.265642px;}
._14{width:14.109579px;}
._13{width:15.446047px;}
._22{width:16.728058px;}
._6{width:17.915881px;}
._17{width:19.251992px;}
._11{width:20.632687px;}
._a{width:22.178065px;}
._b{width:23.856031px;}
._16{width:25.072581px;}
._f{width:26.324844px;}
._e{width:27.536889px;}
._1d{width:28.822699px;}
._15{width:29.926354px;}
._2d{width:30.983784px;}
._8{width:32.219937px;}
._1a{width:33.375970px;}
._10{width:35.109128px;}
._21{width:37.174368px;}
._25{width:39.489630px;}
._1f{width:41.031350px;}
._12{width:42.226273px;}
._d{width:43.505008px;}
._26{width:45.548579px;}
._c{width:47.379722px;}
._27{width:48.767225px;}
._2e{width:49.779645px;}
._1c{width:51.574302px;}
._2a{width:53.271953px;}
._24{width:54.944303px;}
._20{width:61.247196px;}
._23{width:65.958109px;}
._28{width:68.840184px;}
._2b{width:71.502445px;}
._2f{width:83.237409px;}
._1b{width:95.759347px;}
._30{width:97.620253px;}
._29{width:99.021967px;}
._2c{width:128.089438px;}
.fc3{color:transparent;}
.fc2{color:rgb(1,52,44);}
.fc1{color:rgb(0,76,62);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:18.668471px;}
.fs6{font-size:27.973655px;}
.fs9{font-size:30.291504px;}
.fsa{font-size:42.002892px;}
.fs3{font-size:48.001047px;}
.fs4{font-size:53.999998px;}
.fs7{font-size:59.984997px;}
.fs5{font-size:62.954996px;}
.fs0{font-size:65.969996px;}
.fs2{font-size:71.999997px;}
.fs1{font-size:83.969997px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.y149{bottom:5.686134px;}
.y144{bottom:9.495020px;}
.yf6{bottom:15.310622px;}
.y148{bottom:15.783302px;}
.y147{bottom:25.880469px;}
.yf5{bottom:33.659749px;}
.y143{bottom:34.532562px;}
.y146{bottom:35.977637px;}
.y145{bottom:46.074805px;}
.yf4{bottom:50.791392px;}
.y30{bottom:74.520069px;}
.y86{bottom:82.737290px;}
.y2f{bottom:97.020068px;}
.ye7{bottom:106.776032px;}
.y2e{bottom:119.520067px;}
.ye6{bottom:129.276031px;}
.y14a{bottom:130.380428px;}
.y140{bottom:131.422351px;}
.y9c{bottom:139.100250px;}
.y2d{bottom:142.020066px;}
.y4a{bottom:148.024223px;}
.ye5{bottom:151.776030px;}
.y13f{bottom:153.922350px;}
.y9b{bottom:161.600249px;}
.y2c{bottom:164.520065px;}
.ye4{bottom:174.276029px;}
.y13e{bottom:176.422349px;}
.y9a{bottom:184.100248px;}
.y6f{bottom:186.919696px;}
.y2b{bottom:187.020064px;}
.ye3{bottom:196.776028px;}
.y13d{bottom:198.922348px;}
.y129{bottom:203.489380px;}
.y99{bottom:206.600247px;}
.y6e{bottom:209.419695px;}
.y2a{bottom:209.520063px;}
.ye2{bottom:219.276027px;}
.y13c{bottom:221.422347px;}
.y98{bottom:229.100246px;}
.y6d{bottom:231.919694px;}
.y29{bottom:232.020062px;}
.y141{bottom:232.964270px;}
.ycd{bottom:237.589694px;}
.ye1{bottom:241.776026px;}
.y13b{bottom:243.922346px;}
.y97{bottom:251.600246px;}
.y6c{bottom:254.419693px;}
.y28{bottom:254.520061px;}
.ycc{bottom:260.089693px;}
.ye0{bottom:264.276025px;}
.y13a{bottom:266.422345px;}
.y54{bottom:266.957377px;}
.y96{bottom:274.100245px;}
.y6b{bottom:276.919692px;}
.y27{bottom:277.020060px;}
.ycb{bottom:282.589692px;}
.y57{bottom:286.200677px;}
.ydf{bottom:286.776024px;}
.y139{bottom:288.922344px;}
.y53{bottom:289.457376px;}
.y128{bottom:289.857120px;}
.y95{bottom:296.600244px;}
.y1a{bottom:297.706272px;}
.y6a{bottom:299.419692px;}
.y26{bottom:299.520060px;}
.yca{bottom:305.089691px;}
.yde{bottom:309.276023px;}
.y138{bottom:311.422343px;}
.y52{bottom:311.957375px;}
.y94{bottom:319.100243px;}
.y142{bottom:319.674983px;}
.y19{bottom:320.206271px;}
.y25{bottom:322.020059px;}
.ydd{bottom:331.776022px;}
.y137{bottom:333.922342px;}
.y51{bottom:334.457374px;}
.ya6{bottom:334.553062px;}
.y81{bottom:338.719630px;}
.y93{bottom:341.600242px;}
.y18{bottom:342.706270px;}
.y24{bottom:344.520058px;}
.yc9{bottom:350.089689px;}
.y136{bottom:356.422341px;}
.y50{bottom:356.957373px;}
.ya5{bottom:357.053061px;}
.y92{bottom:364.100241px;}
.y17{bottom:365.206269px;}
.y23{bottom:367.020057px;}
.yc8{bottom:372.589688px;}
.ydc{bottom:376.776020px;}
.y135{bottom:378.922340px;}
.y4f{bottom:379.457372px;}
.ya4{bottom:379.553060px;}
.y91{bottom:386.600240px;}
.y16{bottom:387.706268px;}
.y22{bottom:389.520056px;}
.y127{bottom:393.627904px;}
.ydb{bottom:399.276019px;}
.y134{bottom:401.422339px;}
.y4e{bottom:401.957371px;}
.ya3{bottom:402.053059px;}
.y15{bottom:410.206267px;}
.y126{bottom:416.127903px;}
.yab{bottom:421.331130px;}
.y12{bottom:421.356156px;}
.y133{bottom:423.922338px;}
.ya2{bottom:424.553058px;}
.y80{bottom:426.877440px;}
.y4d{bottom:431.954262px;}
.y14{bottom:432.706266px;}
.y48{bottom:435.482447px;}
.y125{bottom:438.627902px;}
.y132{bottom:446.422337px;}
.ya1{bottom:447.053057px;}
.yf2{bottom:451.913669px;}
.y69{bottom:452.027530px;}
.y13{bottom:455.206265px;}
.y124{bottom:461.127901px;}
.y90{bottom:466.256187px;}
.yf1{bottom:467.914018px;}
.y131{bottom:468.922336px;}
.ya0{bottom:469.553056px;}
.y49{bottom:472.079398px;}
.y68{bottom:474.527529px;}
.y123{bottom:483.627900px;}
.y8f{bottom:488.756186px;}
.y11{bottom:489.989325px;}
.y130{bottom:491.422336px;}
.y9f{bottom:492.053055px;}
.yf0{bottom:496.139385px;}
.y67{bottom:497.027528px;}
.yed{bottom:504.258567px;}
.y122{bottom:506.127899px;}
.y8e{bottom:511.256185px;}
.y12f{bottom:513.922335px;}
.y9e{bottom:514.553055px;}
.y66{bottom:519.527527px;}
.y121{bottom:528.627898px;}
.yda{bottom:530.041485px;}
.y8d{bottom:533.756185px;}
.y56{bottom:534.139759px;}
.y12e{bottom:536.422334px;}
.y9d{bottom:537.053054px;}
.y65{bottom:542.027526px;}
.y120{bottom:551.127897px;}
.yd9{bottom:552.541484px;}
.y8c{bottom:556.256184px;}
.y12d{bottom:558.922333px;}
.yc7{bottom:559.308580px;}
.y64{bottom:564.527525px;}
.yac{bottom:568.477992px;}
.y11f{bottom:573.627896px;}
.yd8{bottom:575.041483px;}
.y8b{bottom:578.756183px;}
.y12c{bottom:581.422332px;}
.yc6{bottom:581.808579px;}
.y63{bottom:587.027524px;}
.y11e{bottom:596.127896px;}
.yd7{bottom:597.541482px;}
.y8a{bottom:601.256182px;}
.y85{bottom:601.853164px;}
.yc5{bottom:604.308578px;}
.y62{bottom:609.527523px;}
.y11d{bottom:618.627895px;}
.yd6{bottom:620.041481px;}
.y89{bottom:623.756181px;}
.yc4{bottom:626.808577px;}
.y61{bottom:632.027522px;}
.yd5{bottom:642.541480px;}
.y88{bottom:646.256180px;}
.yc3{bottom:649.308577px;}
.y60{bottom:654.527522px;}
.y11c{bottom:663.627893px;}
.yd4{bottom:665.041479px;}
.y21{bottom:675.103990px;}
.y5f{bottom:677.027521px;}
.y87{bottom:678.806162px;}
.y11b{bottom:686.127892px;}
.yd3{bottom:687.541479px;}
.yc2{bottom:694.308575px;}
.y20{bottom:697.603989px;}
.y5e{bottom:699.527520px;}
.y12b{bottom:702.716043px;}
.y47{bottom:703.810229px;}
.y11a{bottom:708.627891px;}
.yd2{bottom:710.041478px;}
.yc1{bottom:716.808574px;}
.y12a{bottom:718.716392px;}
.y1f{bottom:720.103988px;}
.y83{bottom:721.987468px;}
.y5d{bottom:722.027519px;}
.y119{bottom:731.127890px;}
.yd1{bottom:732.541477px;}
.y82{bottom:737.987817px;}
.y1e{bottom:742.603987px;}
.y5c{bottom:744.527518px;}
.y109{bottom:744.991590px;}
.yd0{bottom:755.041476px;}
.yf8{bottom:761.788315px;}
.y1d{bottom:765.103987px;}
.y5b{bottom:767.027517px;}
.y108{bottom:767.491589px;}
.ycf{bottom:777.541475px;}
.y10{bottom:780.629029px;}
.y41{bottom:785.688739px;}
.y1c{bottom:787.603986px;}
.y5a{bottom:789.527516px;}
.y107{bottom:789.991588px;}
.y7f{bottom:798.736521px;}
.y118{bottom:799.758708px;}
.yce{bottom:800.041474px;}
.yf{bottom:803.129028px;}
.y40{bottom:808.188738px;}
.y1b{bottom:810.103985px;}
.y59{bottom:812.027515px;}
.y106{bottom:812.491587px;}
.yf3{bottom:815.626260px;}
.y7e{bottom:821.236520px;}
.y117{bottom:822.258707px;}
.ye{bottom:825.629027px;}
.yec{bottom:830.341503px;}
.y3f{bottom:830.688737px;}
.y105{bottom:834.991586px;}
.yc0{bottom:841.343444px;}
.y58{bottom:842.327544px;}
.y84{bottom:842.901619px;}
.y7d{bottom:843.736519px;}
.y116{bottom:844.758706px;}
.yc{bottom:847.154013px;}
.yd{bottom:848.129026px;}
.y3e{bottom:853.188736px;}
.yeb{bottom:855.091502px;}
.y104{bottom:857.491585px;}
.ybf{bottom:863.843443px;}
.y7c{bottom:866.236518px;}
.y115{bottom:867.258705px;}
.y3d{bottom:875.688735px;}
.y103{bottom:879.991585px;}
.y55{bottom:884.058031px;}
.ybe{bottom:886.343442px;}
.y7b{bottom:888.736517px;}
.ye9{bottom:889.643415px;}
.y114{bottom:889.758705px;}
.y3c{bottom:898.188734px;}
.y102{bottom:902.491584px;}
.y9{bottom:903.577023px;}
.ybd{bottom:908.843441px;}
.y7a{bottom:911.236516px;}
.ye8{bottom:912.143414px;}
.y113{bottom:912.258704px;}
.y3b{bottom:920.688733px;}
.y101{bottom:924.991583px;}
.y8{bottom:926.077022px;}
.ybc{bottom:931.343440px;}
.y79{bottom:933.736515px;}
.y112{bottom:934.758703px;}
.yea{bottom:942.428193px;}
.y100{bottom:947.491582px;}
.y7{bottom:948.577021px;}
.ybb{bottom:953.843439px;}
.y78{bottom:956.236514px;}
.y4c{bottom:956.613740px;}
.y3a{bottom:959.890687px;}
.yff{bottom:969.991581px;}
.y6{bottom:971.077020px;}
.yba{bottom:976.343439px;}
.y77{bottom:978.736513px;}
.y111{bottom:979.758701px;}
.y39{bottom:982.390686px;}
.yb4{bottom:985.473647px;}
.yfe{bottom:992.491580px;}
.y5{bottom:993.577019px;}
.y46{bottom:997.678096px;}
.yb9{bottom:998.843438px;}
.y76{bottom:1001.236512px;}
.y110{bottom:1002.258700px;}
.y38{bottom:1004.890685px;}
.yb3{bottom:1007.973646px;}
.yfd{bottom:1014.991579px;}
.y4{bottom:1016.077018px;}
.y45{bottom:1019.053095px;}
.yb8{bottom:1021.343437px;}
.y75{bottom:1023.736511px;}
.y10f{bottom:1024.758699px;}
.y37{bottom:1027.390684px;}
.yb2{bottom:1030.473645px;}
.yfc{bottom:1037.491578px;}
.y3{bottom:1038.577018px;}
.y44{bottom:1040.428094px;}
.yb7{bottom:1043.843436px;}
.y74{bottom:1046.236510px;}
.y10e{bottom:1047.258698px;}
.y36{bottom:1049.890683px;}
.yb1{bottom:1052.973644px;}
.yfb{bottom:1059.991577px;}
.y2{bottom:1061.077017px;}
.yb6{bottom:1066.343435px;}
.y73{bottom:1068.736509px;}
.y10d{bottom:1069.758697px;}
.y35{bottom:1072.390682px;}
.yb0{bottom:1075.473643px;}
.yaa{bottom:1082.182718px;}
.yfa{bottom:1082.491576px;}
.y43{bottom:1083.178092px;}
.yb5{bottom:1088.843434px;}
.y72{bottom:1091.236509px;}
.y10c{bottom:1092.258696px;}
.y34{bottom:1094.890681px;}
.yaf{bottom:1097.973642px;}
.y31{bottom:1102.316602px;}
.y42{bottom:1104.553092px;}
.ya9{bottom:1104.682717px;}
.yf9{bottom:1104.991575px;}
.y71{bottom:1113.736508px;}
.y10b{bottom:1114.758695px;}
.yef{bottom:1117.248649px;}
.y33{bottom:1117.390680px;}
.yae{bottom:1120.473641px;}
.ya8{bottom:1127.182716px;}
.y70{bottom:1136.236507px;}
.yf7{bottom:1136.283692px;}
.y10a{bottom:1137.258694px;}
.y4b{bottom:1138.915677px;}
.y32{bottom:1139.890679px;}
.yee{bottom:1141.998648px;}
.yad{bottom:1142.973640px;}
.ya7{bottom:1149.682715px;}
.yb{bottom:1153.569376px;}
.ya{bottom:1182.819374px;}
.h10{height:15.028119px;}
.hd{height:24.476948px;}
.h12{height:26.505066px;}
.h13{height:36.752530px;}
.ha{height:39.024851px;}
.h6{height:39.072852px;}
.hc{height:42.000916px;}
.h7{height:43.955998px;}
.h9{height:51.182412px;}
.hf{height:52.486872px;}
.h8{height:53.633607px;}
.h3{height:53.699577px;}
.h11{height:54.359998px;}
.hb{height:57.723747px;}
.he{height:57.959998px;}
.h5{height:59.615998px;}
.h4{height:69.527157px;}
.h1{height:1263.000000px;}
.h2{height:1263.374947px;}
.h0{height:1263.374968px;}
.w2{width:227.519991px;}
.w1{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:41.152553px;}
.x5{left:44.296181px;}
.x9{left:45.803167px;}
.xb{left:58.529729px;}
.xd{left:71.573049px;}
.xa{left:73.840276px;}
.x2{left:93.281567px;}
.x12{left:108.719995px;}
.x3{left:359.590155px;}
.x4{left:467.536139px;}
.x8{left:469.043109px;}
.x6{left:470.283378px;}
.x10{left:475.311955px;}
.x7{left:494.290044px;}
.xc{left:495.573247px;}
.x13{left:550.367775px;}
.x11{left:558.903361px;}
.xf{left:668.837816px;}
.xe{left:670.741820px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws3{word-spacing:-16.301919pt;}
.ws4{word-spacing:-15.999999pt;}
.ws0{word-spacing:-14.659999pt;}
.ws2{word-spacing:-13.989999pt;}
.ws6{word-spacing:-13.329999pt;}
.ws8{word-spacing:-9.333976pt;}
.ws5{word-spacing:-6.216368pt;}
.ws7{word-spacing:-4.148549pt;}
.ws1{word-spacing:0.000000pt;}
._19{margin-left:-0.888945pt;}
._4{width:1.025185pt;}
._1{width:2.013474pt;}
._5{width:3.395424pt;}
._3{width:4.397851pt;}
._7{width:5.421898pt;}
._1e{width:6.383077pt;}
._0{width:7.272934pt;}
._2{width:8.808712pt;}
._9{width:9.887286pt;}
._18{width:10.902793pt;}
._14{width:12.541848pt;}
._13{width:13.729820pt;}
._22{width:14.869385pt;}
._6{width:15.925228pt;}
._17{width:17.112882pt;}
._11{width:18.340166pt;}
._a{width:19.713835pt;}
._b{width:21.205361pt;}
._16{width:22.286739pt;}
._f{width:23.399861pt;}
._e{width:24.477235pt;}
._1d{width:25.620177pt;}
._15{width:26.601204pt;}
._2d{width:27.541141pt;}
._8{width:28.639944pt;}
._1a{width:29.667529pt;}
._10{width:31.208113pt;}
._21{width:33.043883pt;}
._25{width:35.101893pt;}
._1f{width:36.472311pt;}
._12{width:37.534465pt;}
._d{width:38.671118pt;}
._26{width:40.487626pt;}
._c{width:42.115309pt;}
._27{width:43.348644pt;}
._2e{width:44.248573pt;}
._1c{width:45.843824pt;}
._2a{width:47.352847pt;}
._24{width:48.839380pt;}
._20{width:54.441952pt;}
._23{width:58.629430pt;}
._28{width:61.191274pt;}
._2b{width:63.557729pt;}
._2f{width:73.988808pt;}
._1b{width:85.119419pt;}
._30{width:86.773558pt;}
._29{width:88.019527pt;}
._2c{width:113.857278pt;}
.fs8{font-size:16.594196pt;}
.fs6{font-size:24.865471pt;}
.fs9{font-size:26.925781pt;}
.fsa{font-size:37.335904pt;}
.fs3{font-size:42.667598pt;}
.fs4{font-size:47.999998pt;}
.fs7{font-size:53.319997pt;}
.fs5{font-size:55.959997pt;}
.fs0{font-size:58.639997pt;}
.fs2{font-size:63.999997pt;}
.fs1{font-size:74.639997pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.y149{bottom:5.054341pt;}
.y144{bottom:8.440018pt;}
.yf6{bottom:13.609442pt;}
.y148{bottom:14.029601pt;}
.y147{bottom:23.004862pt;}
.yf5{bottom:29.919777pt;}
.y143{bottom:30.695610pt;}
.y146{bottom:31.980122pt;}
.y145{bottom:40.955382pt;}
.yf4{bottom:45.147904pt;}
.y30{bottom:66.240061pt;}
.y86{bottom:73.544258pt;}
.y2f{bottom:86.240060pt;}
.ye7{bottom:94.912028pt;}
.y2e{bottom:106.240060pt;}
.ye6{bottom:114.912027pt;}
.y14a{bottom:115.893714pt;}
.y140{bottom:116.819867pt;}
.y9c{bottom:123.644667pt;}
.y2d{bottom:126.240059pt;}
.y4a{bottom:131.577087pt;}
.ye5{bottom:134.912026pt;}
.y13f{bottom:136.819866pt;}
.y9b{bottom:143.644666pt;}
.y2c{bottom:146.240058pt;}
.ye4{bottom:154.912026pt;}
.y13e{bottom:156.819865pt;}
.y9a{bottom:163.644665pt;}
.y6f{bottom:166.150841pt;}
.y2b{bottom:166.240057pt;}
.ye3{bottom:174.912025pt;}
.y13d{bottom:176.819865pt;}
.y129{bottom:180.879448pt;}
.y99{bottom:183.644664pt;}
.y6e{bottom:186.150840pt;}
.y2a{bottom:186.240056pt;}
.ye2{bottom:194.912024pt;}
.y13c{bottom:196.819864pt;}
.y98{bottom:203.644664pt;}
.y6d{bottom:206.150839pt;}
.y29{bottom:206.240055pt;}
.y141{bottom:207.079351pt;}
.ycd{bottom:211.190839pt;}
.ye1{bottom:214.912023pt;}
.y13b{bottom:216.819863pt;}
.y97{bottom:223.644663pt;}
.y6c{bottom:226.150839pt;}
.y28{bottom:226.240055pt;}
.ycc{bottom:231.190838pt;}
.ye0{bottom:234.912022pt;}
.y13a{bottom:236.819862pt;}
.y54{bottom:237.295446pt;}
.y96{bottom:243.644662pt;}
.y6b{bottom:246.150838pt;}
.y27{bottom:246.240054pt;}
.ycb{bottom:251.190838pt;}
.y57{bottom:254.400602pt;}
.ydf{bottom:254.912021pt;}
.y139{bottom:256.819861pt;}
.y53{bottom:257.295445pt;}
.y128{bottom:257.650773pt;}
.y95{bottom:263.644661pt;}
.y1a{bottom:264.627797pt;}
.y6a{bottom:266.150837pt;}
.y26{bottom:266.240053pt;}
.yca{bottom:271.190837pt;}
.yde{bottom:274.912021pt;}
.y138{bottom:276.819860pt;}
.y52{bottom:277.295444pt;}
.y94{bottom:283.644660pt;}
.y142{bottom:284.155540pt;}
.y19{bottom:284.627796pt;}
.y25{bottom:286.240052pt;}
.ydd{bottom:294.912020pt;}
.y137{bottom:296.819860pt;}
.y51{bottom:297.295444pt;}
.ya6{bottom:297.380500pt;}
.y81{bottom:301.084115pt;}
.y93{bottom:303.644659pt;}
.y18{bottom:304.627795pt;}
.y24{bottom:306.240051pt;}
.yc9{bottom:311.190835pt;}
.y136{bottom:316.819859pt;}
.y50{bottom:317.295443pt;}
.ya5{bottom:317.380499pt;}
.y92{bottom:323.644659pt;}
.y17{bottom:324.627794pt;}
.y23{bottom:326.240050pt;}
.yc8{bottom:331.190834pt;}
.ydc{bottom:334.912018pt;}
.y135{bottom:336.819858pt;}
.y4f{bottom:337.295442pt;}
.ya4{bottom:337.380498pt;}
.y91{bottom:343.644658pt;}
.y16{bottom:344.627794pt;}
.y22{bottom:346.240050pt;}
.y127{bottom:349.891470pt;}
.ydb{bottom:354.912017pt;}
.y134{bottom:356.819857pt;}
.y4e{bottom:357.295441pt;}
.ya3{bottom:357.380497pt;}
.y15{bottom:364.627793pt;}
.y126{bottom:369.891469pt;}
.yab{bottom:374.516560pt;}
.y12{bottom:374.538805pt;}
.y133{bottom:376.819856pt;}
.ya2{bottom:377.380496pt;}
.y80{bottom:379.446613pt;}
.y4d{bottom:383.959344pt;}
.y14{bottom:384.627792pt;}
.y48{bottom:387.095509pt;}
.y125{bottom:389.891469pt;}
.y132{bottom:396.819855pt;}
.ya1{bottom:397.380495pt;}
.yf2{bottom:401.701039pt;}
.y69{bottom:401.802249pt;}
.y13{bottom:404.627791pt;}
.y124{bottom:409.891468pt;}
.y90{bottom:414.449944pt;}
.yf1{bottom:415.923571pt;}
.y131{bottom:416.819855pt;}
.ya0{bottom:417.380495pt;}
.y49{bottom:419.626131pt;}
.y68{bottom:421.802248pt;}
.y123{bottom:429.891467pt;}
.y8f{bottom:434.449943pt;}
.y11{bottom:435.546067pt;}
.y130{bottom:436.819854pt;}
.y9f{bottom:437.380494pt;}
.yf0{bottom:441.012786pt;}
.y67{bottom:441.802247pt;}
.yed{bottom:448.229837pt;}
.y122{bottom:449.891466pt;}
.y8e{bottom:454.449943pt;}
.y12f{bottom:456.819853pt;}
.y9e{bottom:457.380493pt;}
.y66{bottom:461.802246pt;}
.y121{bottom:469.891465pt;}
.yda{bottom:471.147987pt;}
.y8d{bottom:474.449942pt;}
.y56{bottom:474.790897pt;}
.y12e{bottom:476.819852pt;}
.y9d{bottom:477.380492pt;}
.y65{bottom:481.802246pt;}
.y120{bottom:489.891464pt;}
.yd9{bottom:491.147986pt;}
.y8c{bottom:494.449941pt;}
.y12d{bottom:496.819851pt;}
.yc7{bottom:497.163182pt;}
.y64{bottom:501.802245pt;}
.yac{bottom:505.313771pt;}
.y11f{bottom:509.891464pt;}
.yd8{bottom:511.147985pt;}
.y8b{bottom:514.449940pt;}
.y12c{bottom:516.819850pt;}
.yc6{bottom:517.163182pt;}
.y63{bottom:521.802244pt;}
.y11e{bottom:529.891463pt;}
.yd7{bottom:531.147984pt;}
.y8a{bottom:534.449939pt;}
.y85{bottom:534.980591pt;}
.yc5{bottom:537.163181pt;}
.y62{bottom:541.802243pt;}
.y11d{bottom:549.891462pt;}
.yd6{bottom:551.147983pt;}
.y89{bottom:554.449938pt;}
.yc4{bottom:557.163180pt;}
.y61{bottom:561.802242pt;}
.yd5{bottom:571.147983pt;}
.y88{bottom:574.449938pt;}
.yc3{bottom:577.163179pt;}
.y60{bottom:581.802241pt;}
.y11c{bottom:589.891460pt;}
.yd4{bottom:591.147982pt;}
.y21{bottom:600.092436pt;}
.y5f{bottom:601.802241pt;}
.y87{bottom:603.383255pt;}
.y11b{bottom:609.891459pt;}
.yd3{bottom:611.147981pt;}
.yc2{bottom:617.163177pt;}
.y20{bottom:620.092435pt;}
.y5e{bottom:621.802240pt;}
.y12b{bottom:624.636482pt;}
.y47{bottom:625.609092pt;}
.y11a{bottom:629.891459pt;}
.yd2{bottom:631.147980pt;}
.yc1{bottom:637.163177pt;}
.y12a{bottom:638.859015pt;}
.y1f{bottom:640.092434pt;}
.y83{bottom:641.766639pt;}
.y5d{bottom:641.802239pt;}
.y119{bottom:649.891458pt;}
.yd1{bottom:651.147979pt;}
.y82{bottom:655.989171pt;}
.y1e{bottom:660.092433pt;}
.y5c{bottom:661.802238pt;}
.y109{bottom:662.214747pt;}
.yd0{bottom:671.147978pt;}
.yf8{bottom:677.145169pt;}
.y1d{bottom:680.092432pt;}
.y5b{bottom:681.802237pt;}
.y108{bottom:682.214746pt;}
.ycf{bottom:691.147978pt;}
.y10{bottom:693.892470pt;}
.y41{bottom:698.389990pt;}
.y1c{bottom:700.092432pt;}
.y5a{bottom:701.802236pt;}
.y107{bottom:702.214745pt;}
.y7f{bottom:709.988018pt;}
.y118{bottom:710.896630pt;}
.yce{bottom:711.147977pt;}
.yf{bottom:713.892469pt;}
.y40{bottom:718.389989pt;}
.y1b{bottom:720.092431pt;}
.y59{bottom:721.802236pt;}
.y106{bottom:722.214744pt;}
.yf3{bottom:725.001120pt;}
.y7e{bottom:729.988018pt;}
.y117{bottom:730.896629pt;}
.ye{bottom:733.892469pt;}
.yec{bottom:738.081336pt;}
.y3f{bottom:738.389988pt;}
.y105{bottom:742.214743pt;}
.yc0{bottom:747.860839pt;}
.y58{bottom:748.735594pt;}
.y84{bottom:749.245884pt;}
.y7d{bottom:749.988017pt;}
.y116{bottom:750.896628pt;}
.yc{bottom:753.025789pt;}
.yd{bottom:753.892468pt;}
.y3e{bottom:758.389988pt;}
.yeb{bottom:760.081335pt;}
.y104{bottom:762.214743pt;}
.ybf{bottom:767.860838pt;}
.y7c{bottom:769.988016pt;}
.y115{bottom:770.896627pt;}
.y3d{bottom:778.389987pt;}
.y103{bottom:782.214742pt;}
.y55{bottom:785.829361pt;}
.ybe{bottom:787.860838pt;}
.y7b{bottom:789.988015pt;}
.ye9{bottom:790.794146pt;}
.y114{bottom:790.896626pt;}
.y3c{bottom:798.389986pt;}
.y102{bottom:802.214741pt;}
.y9{bottom:803.179576pt;}
.ybd{bottom:807.860837pt;}
.y7a{bottom:809.988014pt;}
.ye8{bottom:810.794145pt;}
.y113{bottom:810.896625pt;}
.y3b{bottom:818.389985pt;}
.y101{bottom:822.214740pt;}
.y8{bottom:823.179575pt;}
.ybc{bottom:827.860836pt;}
.y79{bottom:829.988013pt;}
.y112{bottom:830.896625pt;}
.yea{bottom:837.713949pt;}
.y100{bottom:842.214739pt;}
.y7{bottom:843.179574pt;}
.ybb{bottom:847.860835pt;}
.y78{bottom:849.988013pt;}
.y4c{bottom:850.323325pt;}
.y3a{bottom:853.236166pt;}
.yff{bottom:862.214738pt;}
.y6{bottom:863.179574pt;}
.yba{bottom:867.860834pt;}
.y77{bottom:869.988012pt;}
.y111{bottom:870.896623pt;}
.y39{bottom:873.236165pt;}
.yb4{bottom:875.976575pt;}
.yfe{bottom:882.214738pt;}
.y5{bottom:883.179573pt;}
.y46{bottom:886.824974pt;}
.yb9{bottom:887.860833pt;}
.y76{bottom:889.988011pt;}
.y110{bottom:890.896622pt;}
.y38{bottom:893.236164pt;}
.yb3{bottom:895.976574pt;}
.yfd{bottom:902.214737pt;}
.y4{bottom:903.179572pt;}
.y45{bottom:905.824973pt;}
.yb8{bottom:907.860833pt;}
.y75{bottom:909.988010pt;}
.y10f{bottom:910.896621pt;}
.y37{bottom:913.236164pt;}
.yb2{bottom:915.976573pt;}
.yfc{bottom:922.214736pt;}
.y3{bottom:923.179571pt;}
.y44{bottom:924.824973pt;}
.yb7{bottom:927.860832pt;}
.y74{bottom:929.988009pt;}
.y10e{bottom:930.896620pt;}
.y36{bottom:933.236163pt;}
.yb1{bottom:935.976572pt;}
.yfb{bottom:942.214735pt;}
.y2{bottom:943.179570pt;}
.yb6{bottom:947.860831pt;}
.y73{bottom:949.988008pt;}
.y10d{bottom:950.896620pt;}
.y35{bottom:953.236162pt;}
.yb0{bottom:955.976571pt;}
.yaa{bottom:961.940194pt;}
.yfa{bottom:962.214734pt;}
.y43{bottom:962.824971pt;}
.yb5{bottom:967.860830pt;}
.y72{bottom:969.988008pt;}
.y10c{bottom:970.896619pt;}
.y34{bottom:973.236161pt;}
.yaf{bottom:975.976571pt;}
.y31{bottom:979.836980pt;}
.y42{bottom:981.824970pt;}
.ya9{bottom:981.940193pt;}
.yf9{bottom:982.214733pt;}
.y71{bottom:989.988007pt;}
.y10b{bottom:990.896618pt;}
.yef{bottom:993.109911pt;}
.y33{bottom:993.236160pt;}
.yae{bottom:995.976570pt;}
.ya8{bottom:1001.940192pt;}
.y70{bottom:1009.988006pt;}
.yf7{bottom:1010.029948pt;}
.y10a{bottom:1010.896617pt;}
.y4b{bottom:1012.369491pt;}
.y32{bottom:1013.236159pt;}
.yee{bottom:1015.109910pt;}
.yad{bottom:1015.976569pt;}
.ya7{bottom:1021.940191pt;}
.yb{bottom:1025.395000pt;}
.ya{bottom:1051.394999pt;}
.h10{height:13.358328pt;}
.hd{height:21.757287pt;}
.h12{height:23.560058pt;}
.h13{height:32.668916pt;}
.ha{height:34.688757pt;}
.h6{height:34.731424pt;}
.hc{height:37.334148pt;}
.h7{height:39.071998pt;}
.h9{height:45.495477pt;}
.hf{height:46.654998pt;}
.h8{height:47.674317pt;}
.h3{height:47.732957pt;}
.h11{height:48.319998pt;}
.hb{height:51.309997pt;}
.he{height:51.519998pt;}
.h5{height:52.991998pt;}
.h4{height:61.801917pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w2{width:202.239992pt;}
.w1{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:36.580047pt;}
.x5{left:39.374383pt;}
.x9{left:40.713927pt;}
.xb{left:52.026426pt;}
.xd{left:63.620488pt;}
.xa{left:65.635801pt;}
.x2{left:82.916948pt;}
.x12{left:96.639996pt;}
.x3{left:319.635693pt;}
.x4{left:415.587679pt;}
.x8{left:416.927208pt;}
.x6{left:418.029669pt;}
.x10{left:422.499515pt;}
.x7{left:439.368928pt;}
.xc{left:440.509553pt;}
.x13{left:489.215800pt;}
.x11{left:496.802987pt;}
.xf{left:594.522503pt;}
.xe{left:596.214951pt;}
}




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