
    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_5d7193b3114d521c9c6f84aa.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_5c1c0832755dcb4249be7d0a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_9d7a01ea39ac75005a532f76.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.173340;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_e2b3f941762afc4512f4cf55.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.133301;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_95171dde4a6c0760e61268ff.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.067871;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_d1deec00e3956ff5aba06e82.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.911133;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_be0ffef1a33972d60b094f4f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.707031;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_0a32583882b51fd9fefa0ff2.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.674316;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_4ffae8c362a316e23ee85d58.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.817871;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);}
.m4{transform:matrix(0.369082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369082,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.369088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369088,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.369092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369092,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.369095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369095,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.243360px;}
.ls4{letter-spacing:33.119987px;}
.ls6{letter-spacing:39.131984px;}
.ls2{letter-spacing:57.599977px;}
.ls8{letter-spacing:61.883975px;}
.ls3{letter-spacing:65.915974px;}
.ls7{letter-spacing:76.499969px;}
.ls1{letter-spacing:80.783968px;}
.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;}
}
.wsb{word-spacing:-52.559979px;}
.ws6{word-spacing:-48.059981px;}
.ws12{word-spacing:-41.939983px;}
.ws9{word-spacing:-40.319984px;}
.ws15{word-spacing:-36.497505px;}
.ws3{word-spacing:-33.667187px;}
.ws13{word-spacing:-30.239988px;}
.ws7{word-spacing:-29.915988px;}
.ws4{word-spacing:-26.621269px;}
.ws0{word-spacing:-25.019990px;}
.ws14{word-spacing:-24.929990px;}
.ws1{word-spacing:-23.587191px;}
.ws5{word-spacing:-23.418711px;}
.ws8{word-spacing:-21.772791px;}
.wsc{word-spacing:-19.725093px;}
.wsd{word-spacing:-1.900926px;}
.ws2{word-spacing:0.000000px;}
.wse{word-spacing:1.692035px;}
.wsa{word-spacing:55.669000px;}
.wsf{word-spacing:401.270599px;}
.ws10{word-spacing:422.870591px;}
.ws11{word-spacing:485.999806px;}
._8{margin-left:-2.723235px;}
._7{margin-left:-1.121132px;}
._6{width:1.439999px;}
._9{width:3.220689px;}
._e{width:4.468131px;}
._d{width:5.993958px;}
._c{width:7.539094px;}
._f{width:8.614410px;}
._12{width:9.621099px;}
._17{width:11.101609px;}
._3{width:12.869995px;}
._4{width:14.669994px;}
._5{width:16.739993px;}
._0{width:17.819993px;}
._2{width:19.169992px;}
._1{width:20.699992px;}
._10{width:29.610902px;}
._16{width:35.607618px;}
._15{width:40.319204px;}
._11{width:50.862286px;}
._a{width:82.423552px;}
._13{width:110.822411px;}
._14{width:112.173489px;}
._b{width:163.798312px;}
._18{width:270.742716px;}
._1a{width:428.332675px;}
._1c{width:431.186588px;}
._1b{width:452.786579px;}
._1d{width:474.197236px;}
._1f{width:485.788398px;}
._22{width:505.345838px;}
._19{width:528.386549px;}
._21{width:530.496077px;}
._23{width:548.495350px;}
._1e{width:585.986166px;}
._20{width:629.906508px;}
.fcb{color:rgb(107,124,113);}
.fc9{color:rgb(207,84,63);}
.fc8{color:rgb(128,0,0);}
.fca{color:rgb(132,128,88);}
.fc7{color:rgb(147,162,153);}
.fc6{color:rgb(79,80,40);}
.fc5{color:transparent;}
.fc4{color:rgb(31,32,13);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(64,56,45);}
.fc0{color:rgb(66,64,44);}
.fse{font-size:48.239981px;}
.fsb{font-size:59.880936px;}
.fsa{font-size:65.621374px;}
.fs1{font-size:66.239974px;}
.fsc{font-size:70.953572px;}
.fsd{font-size:76.286369px;}
.fs8{font-size:77.759969px;}
.fs3{font-size:84.239966px;}
.fs0{font-size:89.999964px;}
.fs6{font-size:95.759962px;}
.fs5{font-size:107.999957px;}
.fs4{font-size:120.239952px;}
.fsf{font-size:131.759947px;}
.fs2{font-size:143.999942px;}
.fs10{font-size:167.759933px;}
.fs7{font-size:192.239923px;}
.fs9{font-size:210.239916px;}
.y12{bottom:-25.919910px;}
.y7c{bottom:-1.079659px;}
.y0{bottom:0.000000px;}
.y5e{bottom:3.960121px;}
.y6c{bottom:3.960203px;}
.y71{bottom:3.960242px;}
.y75{bottom:3.960268px;}
.y7b{bottom:41.280000px;}
.y79{bottom:66.120331px;}
.yc{bottom:71.160329px;}
.y48{bottom:74.220327px;}
.y96{bottom:76.200327px;}
.y93{bottom:78.720326px;}
.y7a{bottom:92.040320px;}
.y47{bottom:92.940320px;}
.y5b{bottom:93.480320px;}
.ycc{bottom:96.000319px;}
.yb{bottom:96.360318px;}
.y35{bottom:113.460312px;}
.y46{bottom:116.340310px;}
.ycb{bottom:117.600310px;}
.ya{bottom:121.560308px;}
.y5a{bottom:122.280308px;}
.y78{bottom:124.980307px;}
.yca{bottom:139.200301px;}
.y45{bottom:139.740301px;}
.ya3{bottom:140.280301px;}
.y9{bottom:146.760298px;}
.yd7{bottom:147.120298px;}
.yd{bottom:147.840298px;}
.yb0{bottom:150.900297px;}
.y59{bottom:151.080297px;}
.y77{bottom:157.740294px;}
.yc9{bottom:160.800293px;}
.y44{bottom:163.140292px;}
.yb2{bottom:166.380290px;}
.y8{bottom:171.780288px;}
.y91{bottom:172.320288px;}
.ya2{bottom:172.680288px;}
.yaf{bottom:174.120287px;}
.y58{bottom:179.880285px;}
.yc8{bottom:182.400284px;}
.y43{bottom:186.540282px;}
.y76{bottom:190.500281px;}
.y42{bottom:205.260275px;}
.y28{bottom:205.440275px;}
.ye{bottom:207.420274px;}
.y57{bottom:208.680274px;}
.yc7{bottom:209.220273px;}
.yb1{bottom:216.780270px;}
.yae{bottom:217.860270px;}
.y74{bottom:219.480000px;}
.y34{bottom:219.840269px;}
.y73{bottom:224.700267px;}
.y41{bottom:228.660266px;}
.y56{bottom:237.480262px;}
.y27{bottom:237.840262px;}
.yd6{bottom:242.160260px;}
.ya1{bottom:251.880256px;}
.y40{bottom:252.060256px;}
.y72{bottom:256.200255px;}
.yad{bottom:261.600252px;}
.y33{bottom:263.040252px;}
.yc6{bottom:263.400252px;}
.y90{bottom:264.300251px;}
.y55{bottom:266.280250px;}
.y52{bottom:266.460250px;}
.y26{bottom:270.240249px;}
.y3f{bottom:270.780249px;}
.yd5{bottom:281.760244px;}
.y70{bottom:283.740000px;}
.y21{bottom:284.820243px;}
.yc5{bottom:285.000243px;}
.ya0{bottom:285.540243px;}
.yba{bottom:288.240242px;}
.y6f{bottom:288.960241px;}
.y3e{bottom:294.180239px;}
.y54{bottom:295.080239px;}
.y49{bottom:299.580237px;}
.yac{bottom:305.520235px;}
.yc4{bottom:306.600234px;}
.y1b{bottom:309.660233px;}
.y20{bottom:313.620232px;}
.y3d{bottom:317.580230px;}
.y6e{bottom:321.720228px;}
.y53{bottom:323.880227px;}
.y6a{bottom:324.600227px;}
.yc3{bottom:333.600224px;}
.y3c{bottom:336.300222px;}
.y1a{bottom:338.460222px;}
.y2a{bottom:340.440221px;}
.y1f{bottom:342.420220px;}
.y32{bottom:343.860219px;}
.y7{bottom:348.000218px;}
.yab{bottom:349.260217px;}
.yb9{bottom:353.040216px;}
.y6d{bottom:353.220216px;}
.y69{bottom:357.360214px;}
.y92{bottom:358.260214px;}
.y3b{bottom:359.700213px;}
.y19{bottom:367.260210px;}
.y51{bottom:370.140209px;}
.y1e{bottom:371.220209px;}
.y9f{bottom:371.400208px;}
.yd4{bottom:376.800206px;}
.y6b{bottom:382.200000px;}
.y3a{bottom:383.100204px;}
.y31{bottom:387.060202px;}
.y68{bottom:387.420202px;}
.yc2{bottom:387.600202px;}
.y6{bottom:391.200201px;}
.yaa{bottom:393.000200px;}
.y18{bottom:396.060199px;}
.y1d{bottom:400.020197px;}
.y39{bottom:401.820196px;}
.y9e{bottom:403.800195px;}
.y29{bottom:405.240195px;}
.yc1{bottom:409.200193px;}
.y50{bottom:413.340192px;}
.yb8{bottom:417.840190px;}
.y67{bottom:418.920189px;}
.y17{bottom:424.860187px;}
.y38{bottom:425.220187px;}
.y98{bottom:426.300186px;}
.y95{bottom:428.280186px;}
.y1c{bottom:428.820185px;}
.yc0{bottom:430.800185px;}
.y5{bottom:434.400183px;}
.ya9{bottom:436.920182px;}
.y9d{bottom:437.460182px;}
.y37{bottom:448.620178px;}
.y66{bottom:451.680176px;}
.ybf{bottom:452.400176px;}
.y65{bottom:453.120176px;}
.y4f{bottom:456.540174px;}
.y36{bottom:467.340170px;}
.y30{bottom:469.680169px;}
.yd3{bottom:471.840168px;}
.ybe{bottom:474.000167px;}
.ya8{bottom:480.660165px;}
.yb7{bottom:482.640164px;}
.y64{bottom:484.440163px;}
.y63{bottom:485.880163px;}
.y2d{bottom:489.300161px;}
.ybd{bottom:495.600159px;}
.y2f{bottom:505.680155px;}
.y4e{bottom:508.380154px;}
.yb6{bottom:515.040151px;}
.y62{bottom:517.380150px;}
.y94{bottom:518.280150px;}
.ybc{bottom:522.420148px;}
.ya7{bottom:523.860147px;}
.y9c{bottom:528.000146px;}
.y4{bottom:543.840139px;}
.y61{bottom:550.140137px;}
.y60{bottom:551.400136px;}
.y2c{bottom:554.100135px;}
.ya6{bottom:556.260134px;}
.y4d{bottom:560.220133px;}
.y9b{bottom:563.640132px;}
.yd2{bottom:566.880130px;}
.y3{bottom:568.500130px;}
.y16{bottom:570.300129px;}
.y5f{bottom:571.920128px;}
.ybb{bottom:576.600126px;}
.yb5{bottom:579.840125px;}
.y86{bottom:586.140123px;}
.y2b{bottom:586.500122px;}
.y5d{bottom:587.220000px;}
.y8f{bottom:587.220122px;}
.y2{bottom:590.100121px;}
.y2e{bottom:599.460117px;}
.y85{bottom:600.540117px;}
.y10{bottom:601.080117px;}
.y8e{bottom:601.620116px;}
.y15{bottom:602.700116px;}
.y4c{bottom:603.420116px;}
.yd1{bottom:606.480114px;}
.y9a{bottom:607.740114px;}
.y84{bottom:614.940111px;}
.y8d{bottom:616.020111px;}
.y1{bottom:620.700109px;}
.y83{bottom:629.340105px;}
.y8c{bottom:630.420105px;}
.yf{bottom:633.480104px;}
.y14{bottom:635.100103px;}
.y82{bottom:643.740100px;}
.y8b{bottom:644.820099px;}
.yd0{bottom:648.060098px;}
.y81{bottom:658.140094px;}
.y8a{bottom:659.220093px;}
.y13{bottom:667.500090px;}
.y97{bottom:672.000088px;}
.y80{bottom:672.540088px;}
.y89{bottom:673.620088px;}
.ya4{bottom:679.200085px;}
.y7f{bottom:686.940082px;}
.y88{bottom:688.020082px;}
.ycf{bottom:689.460081px;}
.y11{bottom:693.420000px;}
.y25{bottom:696.660078px;}
.y4b{bottom:697.020078px;}
.yb4{bottom:700.080077px;}
.y7e{bottom:701.340076px;}
.y87{bottom:702.420076px;}
.y7d{bottom:715.740071px;}
.ya5{bottom:724.200067px;}
.yce{bottom:730.860065px;}
.yb3{bottom:735.540063px;}
.y5c{bottom:735.900063px;}
.y99{bottom:753.540056px;}
.y24{bottom:754.260055px;}
.y4a{bottom:754.620055px;}
.y23{bottom:771.900048px;}
.ycd{bottom:772.260048px;}
.y22{bottom:797.100038px;}
.h9{height:0.180000px;}
.h1b{height:13.500000px;}
.h15{height:17.280000px;}
.h1a{height:20.160000px;}
.h1d{height:32.152136px;}
.h1c{height:33.730299px;}
.h17{height:62.453945px;}
.h16{height:64.403790px;}
.h2{height:69.086222px;}
.h18{height:74.002358px;}
.hf{height:75.064189px;}
.h5{height:77.946649px;}
.h19{height:79.564299px;}
.he{height:81.101218px;}
.h4{height:81.319538px;}
.h21{height:83.276334px;}
.h23{height:86.879848px;}
.hb{height:87.859652px;}
.h13{height:88.606019px;}
.h1{height:93.867150px;}
.ha{height:99.874648px;}
.hd{height:99.931601px;}
.h8{height:104.255818px;}
.h7{height:104.857692px;}
.h1f{height:111.257182px;}
.h6{height:116.071477px;}
.h1e{height:121.916553px;}
.h12{height:133.242134px;}
.h24{height:137.421508px;}
.h3{height:139.007757px;}
.h22{height:146.298457px;}
.h11{height:150.187440px;}
.h10{height:167.646730px;}
.hc{height:171.776884px;}
.h20{height:183.343989px;}
.h14{height:187.860862px;}
.h0{height:892.500000px;}
.h25{height:1263.000000px;}
.w1{width:0.360000px;}
.w2{width:5.760000px;}
.w5{width:8.820000px;}
.w8{width:10.260000px;}
.w7{width:11.700000px;}
.w4{width:14.580000px;}
.wf{width:16.200000px;}
.w3{width:17.460000px;}
.wc{width:19.080000px;}
.w10{width:20.340000px;}
.wd{width:26.460000px;}
.wb{width:32.760000px;}
.we{width:32.940000px;}
.wa{width:33.120000px;}
.w9{width:35.820000px;}
.w6{width:36.180000px;}
.w11{width:892.500000px;}
.w0{width:1263.000000px;}
.xc{left:-173.339390px;}
.x0{left:0.000000px;}
.x1a{left:147.405841px;}
.x34{left:151.905960px;}
.x96{left:154.246438px;}
.x8a{left:156.406437px;}
.x5{left:168.466433px;}
.x30{left:169.906432px;}
.x97{left:181.246428px;}
.x93{left:184.846426px;}
.x26{left:190.606424px;}
.x31{left:196.906421px;}
.x86{left:205.006418px;}
.x25{left:209.146416px;}
.x2a{left:212.386415px;}
.x90{left:217.966413px;}
.x8e{left:219.046412px;}
.x1e{left:223.366411px;}
.x12{left:224.626410px;}
.x7f{left:232.906407px;}
.x7d{left:237.406405px;}
.x82{left:239.026404px;}
.x7e{left:241.006404px;}
.x83{left:242.986403px;}
.x11{left:246.946401px;}
.x1f{left:258.826396px;}
.x35{left:260.626396px;}
.x29{left:262.066395px;}
.x85{left:264.406394px;}
.x10{left:273.406391px;}
.x2e{left:278.266389px;}
.x87{left:280.606388px;}
.x91{left:283.666387px;}
.x27{left:284.926386px;}
.x89{left:286.906385px;}
.x9{left:291.586383px;}
.x28{left:293.026383px;}
.xa{left:295.906382px;}
.x13{left:303.106379px;}
.x80{left:304.906378px;}
.x2f{left:307.066377px;}
.x8b{left:318.406373px;}
.x37{left:327.226369px;}
.x95{left:346.846361px;}
.x84{left:349.726360px;}
.x36{left:363.946354px;}
.x38{left:381.765600px;}
.x52{left:383.025600px;}
.x6c{left:384.285600px;}
.x39{left:397.245600px;}
.x53{left:400.485600px;}
.x6d{left:402.645600px;}
.x1c{left:412.366335px;}
.x54{left:413.445600px;}
.x33{left:415.246334px;}
.x98{left:418.486333px;}
.x8{left:421.186332px;}
.x55{left:429.105600px;}
.x3a{left:434.325600px;}
.x6e{left:435.945600px;}
.x56{left:447.105600px;}
.x2{left:453.946318px;}
.x57{left:465.825600px;}
.x3b{left:470.505600px;}
.x3c{left:482.565600px;}
.x32{left:484.906306px;}
.x3d{left:500.565600px;}
.x58{left:502.905600px;}
.x1d{left:514.246294px;}
.x3e{left:516.045600px;}
.x20{left:520.006292px;}
.x59{left:521.085600px;}
.x3f{left:529.005600px;}
.x7{left:537.646285px;}
.x5a{left:539.805600px;}
.x21{left:545.026282px;}
.x40{left:549.885600px;}
.x4{left:551.506279px;}
.x5b{left:557.265600px;}
.x41{left:558.885600px;}
.x92{left:560.506276px;}
.x42{left:574.365600px;}
.x5c{left:576.705600px;}
.x1b{left:585.885666px;}
.x43{left:592.365600px;}
.x5d{left:594.165600px;}
.x6f{left:595.245600px;}
.x44{left:602.805600px;}
.x5e{left:609.645600px;}
.x70{left:612.165600px;}
.x2d{left:621.706251px;}
.x8c{left:628.366249px;}
.x71{left:630.165600px;}
.x1{left:637.726245px;}
.x45{left:639.885600px;}
.x72{left:645.645600px;}
.x19{left:654.286238px;}
.x46{left:657.345600px;}
.x5f{left:658.605600px;}
.x17{left:663.286235px;}
.x47{left:672.825600px;}
.x16{left:681.286227px;}
.x14{left:691.006224px;}
.x60{left:694.425600px;}
.x94{left:701.266219px;}
.x81{left:702.346219px;}
.x61{left:703.425600px;}
.x48{left:709.905600px;}
.x15{left:712.066215px;}
.x62{left:720.885600px;}
.xd{left:725.566210px;}
.xf{left:727.546209px;}
.x73{left:732.405600px;}
.x2b{left:733.846206px;}
.xe{left:744.826202px;}
.x74{left:747.885600px;}
.x18{left:752.566199px;}
.x88{left:756.346197px;}
.x2c{left:760.846196px;}
.x75{left:765.885600px;}
.x3{left:774.346190px;}
.x63{left:782.805600px;}
.x76{left:784.605600px;}
.x6{left:787.126185px;}
.x49{left:794.325600px;}
.x77{left:800.085600px;}
.x8f{left:804.406178px;}
.x8d{left:811.786175px;}
.x78{left:817.545600px;}
.x64{left:819.705600px;}
.x65{left:828.705600px;}
.x4a{left:831.225600px;}
.x79{left:835.905600px;}
.x7a{left:847.785600px;}
.x4b{left:849.585600px;}
.x66{left:861.825600px;}
.x7b{left:865.785600px;}
.x4c{left:867.225600px;}
.x22{left:876.406149px;}
.x67{left:881.265600px;}
.x24{left:887.926145px;}
.xb{left:898.905600px;}
.x68{left:899.985600px;}
.x4d{left:904.125600px;}
.x69{left:918.705600px;}
.x4e{left:922.665600px;}
.x23{left:924.466130px;}
.x6a{left:935.985600px;}
.x6b{left:953.085600px;}
.x4f{left:955.785600px;}
.x7c{left:968.205600px;}
.x50{left:973.065600px;}
.x51{left:986.205600px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.216320pt;}
.ls4{letter-spacing:29.439988pt;}
.ls6{letter-spacing:34.783986pt;}
.ls2{letter-spacing:51.199980pt;}
.ls8{letter-spacing:55.007978pt;}
.ls3{letter-spacing:58.591977pt;}
.ls7{letter-spacing:67.999973pt;}
.ls1{letter-spacing:71.807971pt;}
.wsb{word-spacing:-46.719981pt;}
.ws6{word-spacing:-42.719983pt;}
.ws12{word-spacing:-37.279985pt;}
.ws9{word-spacing:-35.839986pt;}
.ws15{word-spacing:-32.442227pt;}
.ws3{word-spacing:-29.926388pt;}
.ws13{word-spacing:-26.879989pt;}
.ws7{word-spacing:-26.591989pt;}
.ws4{word-spacing:-23.663351pt;}
.ws0{word-spacing:-22.239991pt;}
.ws14{word-spacing:-22.159991pt;}
.ws1{word-spacing:-20.966392pt;}
.ws5{word-spacing:-20.816632pt;}
.ws8{word-spacing:-19.353592pt;}
.wsc{word-spacing:-17.533416pt;}
.wsd{word-spacing:-1.689712pt;}
.ws2{word-spacing:0.000000pt;}
.wse{word-spacing:1.504031pt;}
.wsa{word-spacing:49.483556pt;}
.wsf{word-spacing:356.684977pt;}
.ws10{word-spacing:375.884970pt;}
.ws11{word-spacing:431.999827pt;}
._8{margin-left:-2.420653pt;}
._7{margin-left:-0.996562pt;}
._6{width:1.279999pt;}
._9{width:2.862834pt;}
._e{width:3.971672pt;}
._d{width:5.327963pt;}
._c{width:6.701417pt;}
._f{width:7.657253pt;}
._12{width:8.552088pt;}
._17{width:9.868097pt;}
._3{width:11.439995pt;}
._4{width:13.039995pt;}
._5{width:14.879994pt;}
._0{width:15.839994pt;}
._2{width:17.039993pt;}
._1{width:18.399993pt;}
._10{width:26.320802pt;}
._16{width:31.651216pt;}
._15{width:35.839292pt;}
._11{width:45.210921pt;}
._a{width:73.265380pt;}
._13{width:98.508810pt;}
._14{width:99.709768pt;}
._b{width:145.598500pt;}
._18{width:240.660192pt;}
._1a{width:380.740155pt;}
._1c{width:383.276967pt;}
._1b{width:402.476959pt;}
._1d{width:421.508654pt;}
._1f{width:431.811909pt;}
._22{width:449.196300pt;}
._19{width:469.676932pt;}
._21{width:471.552069pt;}
._23{width:487.551422pt;}
._1e{width:520.876592pt;}
._20{width:559.916896pt;}
.fse{font-size:42.879983pt;}
.fsb{font-size:53.227499pt;}
.fsa{font-size:58.330110pt;}
.fs1{font-size:58.879976pt;}
.fsc{font-size:63.069841pt;}
.fsd{font-size:67.810106pt;}
.fs8{font-size:69.119972pt;}
.fs3{font-size:74.879970pt;}
.fs0{font-size:79.999968pt;}
.fs6{font-size:85.119966pt;}
.fs5{font-size:95.999962pt;}
.fs4{font-size:106.879957pt;}
.fsf{font-size:117.119953pt;}
.fs2{font-size:127.999949pt;}
.fs10{font-size:149.119940pt;}
.fs7{font-size:170.879932pt;}
.fs9{font-size:186.879925pt;}
.y12{bottom:-23.039920pt;}
.y7c{bottom:-0.959697pt;}
.y0{bottom:0.000000pt;}
.y5e{bottom:3.520107pt;}
.y6c{bottom:3.520180pt;}
.y71{bottom:3.520215pt;}
.y75{bottom:3.520238pt;}
.y7b{bottom:36.693333pt;}
.y79{bottom:58.773627pt;}
.yc{bottom:63.253625pt;}
.y48{bottom:65.973624pt;}
.y96{bottom:67.733624pt;}
.y93{bottom:69.973623pt;}
.y7a{bottom:81.813618pt;}
.y47{bottom:82.613618pt;}
.y5b{bottom:83.093617pt;}
.ycc{bottom:85.333617pt;}
.yb{bottom:85.653616pt;}
.y35{bottom:100.853610pt;}
.y46{bottom:103.413609pt;}
.ycb{bottom:104.533609pt;}
.ya{bottom:108.053607pt;}
.y5a{bottom:108.693607pt;}
.y78{bottom:111.093606pt;}
.yca{bottom:123.733601pt;}
.y45{bottom:124.213601pt;}
.ya3{bottom:124.693601pt;}
.y9{bottom:130.453598pt;}
.yd7{bottom:130.773598pt;}
.yd{bottom:131.413598pt;}
.yb0{bottom:134.133597pt;}
.y59{bottom:134.293597pt;}
.y77{bottom:140.213595pt;}
.yc9{bottom:142.933593pt;}
.y44{bottom:145.013593pt;}
.yb2{bottom:147.893592pt;}
.y8{bottom:152.693590pt;}
.y91{bottom:153.173589pt;}
.ya2{bottom:153.493589pt;}
.yaf{bottom:154.773589pt;}
.y58{bottom:159.893587pt;}
.yc8{bottom:162.133586pt;}
.y43{bottom:165.813584pt;}
.y76{bottom:169.333583pt;}
.y42{bottom:182.453578pt;}
.y28{bottom:182.613578pt;}
.ye{bottom:184.373577pt;}
.y57{bottom:185.493576pt;}
.yc7{bottom:185.973576pt;}
.yb1{bottom:192.693574pt;}
.yae{bottom:193.653573pt;}
.y74{bottom:195.093333pt;}
.y34{bottom:195.413573pt;}
.y73{bottom:199.733571pt;}
.y41{bottom:203.253569pt;}
.y56{bottom:211.093566pt;}
.y27{bottom:211.413566pt;}
.yd6{bottom:215.253565pt;}
.ya1{bottom:223.893561pt;}
.y40{bottom:224.053561pt;}
.y72{bottom:227.733560pt;}
.yad{bottom:232.533558pt;}
.y33{bottom:233.813557pt;}
.yc6{bottom:234.133557pt;}
.y90{bottom:234.933557pt;}
.y55{bottom:236.693556pt;}
.y52{bottom:236.853556pt;}
.y26{bottom:240.213555pt;}
.y3f{bottom:240.693554pt;}
.yd5{bottom:250.453550pt;}
.y70{bottom:252.213333pt;}
.y21{bottom:253.173549pt;}
.yc5{bottom:253.333549pt;}
.ya0{bottom:253.813549pt;}
.yba{bottom:256.213548pt;}
.y6f{bottom:256.853548pt;}
.y3e{bottom:261.493546pt;}
.y54{bottom:262.293546pt;}
.y49{bottom:266.293544pt;}
.yac{bottom:271.573542pt;}
.yc4{bottom:272.533542pt;}
.y1b{bottom:275.253541pt;}
.y20{bottom:278.773539pt;}
.y3d{bottom:282.293538pt;}
.y6e{bottom:285.973536pt;}
.y53{bottom:287.893536pt;}
.y6a{bottom:288.533535pt;}
.yc3{bottom:296.533532pt;}
.y3c{bottom:298.933531pt;}
.y1a{bottom:300.853530pt;}
.y2a{bottom:302.613530pt;}
.y1f{bottom:304.373529pt;}
.y32{bottom:305.653528pt;}
.y7{bottom:309.333527pt;}
.yab{bottom:310.453526pt;}
.yb9{bottom:313.813525pt;}
.y6d{bottom:313.973525pt;}
.y69{bottom:317.653524pt;}
.y92{bottom:318.453523pt;}
.y3b{bottom:319.733523pt;}
.y19{bottom:326.453520pt;}
.y51{bottom:329.013519pt;}
.y1e{bottom:329.973519pt;}
.y9f{bottom:330.133519pt;}
.yd4{bottom:334.933517pt;}
.y6b{bottom:339.733333pt;}
.y3a{bottom:340.533514pt;}
.y31{bottom:344.053513pt;}
.y68{bottom:344.373513pt;}
.yc2{bottom:344.533513pt;}
.y6{bottom:347.733512pt;}
.yaa{bottom:349.333511pt;}
.y18{bottom:352.053510pt;}
.y1d{bottom:355.573508pt;}
.y39{bottom:357.173508pt;}
.y9e{bottom:358.933507pt;}
.y29{bottom:360.213507pt;}
.yc1{bottom:363.733505pt;}
.y50{bottom:367.413504pt;}
.yb8{bottom:371.413502pt;}
.y67{bottom:372.373502pt;}
.y17{bottom:377.653500pt;}
.y38{bottom:377.973499pt;}
.y98{bottom:378.933499pt;}
.y95{bottom:380.693498pt;}
.y1c{bottom:381.173498pt;}
.yc0{bottom:382.933497pt;}
.y5{bottom:386.133496pt;}
.ya9{bottom:388.373495pt;}
.y9d{bottom:388.853495pt;}
.y37{bottom:398.773491pt;}
.y66{bottom:401.493490pt;}
.ybf{bottom:402.133490pt;}
.y65{bottom:402.773490pt;}
.y4f{bottom:405.813488pt;}
.y36{bottom:415.413485pt;}
.y30{bottom:417.493484pt;}
.yd3{bottom:419.413483pt;}
.ybe{bottom:421.333482pt;}
.ya8{bottom:427.253480pt;}
.yb7{bottom:429.013479pt;}
.y64{bottom:430.613478pt;}
.y63{bottom:431.893478pt;}
.y2d{bottom:434.933477pt;}
.ybd{bottom:440.533474pt;}
.y2f{bottom:449.493471pt;}
.y4e{bottom:451.893470pt;}
.yb6{bottom:457.813468pt;}
.y62{bottom:459.893467pt;}
.y94{bottom:460.693466pt;}
.ybc{bottom:464.373465pt;}
.ya7{bottom:465.653464pt;}
.y9c{bottom:469.333463pt;}
.y4{bottom:483.413457pt;}
.y61{bottom:489.013455pt;}
.y60{bottom:490.133455pt;}
.y2c{bottom:492.533454pt;}
.ya6{bottom:494.453453pt;}
.y4d{bottom:497.973451pt;}
.y9b{bottom:501.013450pt;}
.yd2{bottom:503.893449pt;}
.y3{bottom:505.333449pt;}
.y16{bottom:506.933448pt;}
.y5f{bottom:508.373447pt;}
.ybb{bottom:512.533446pt;}
.yb5{bottom:515.413445pt;}
.y86{bottom:521.013442pt;}
.y2b{bottom:521.333442pt;}
.y5d{bottom:521.973333pt;}
.y8f{bottom:521.973442pt;}
.y2{bottom:524.533441pt;}
.y2e{bottom:532.853438pt;}
.y85{bottom:533.813437pt;}
.y10{bottom:534.293437pt;}
.y8e{bottom:534.773437pt;}
.y15{bottom:535.733436pt;}
.y4c{bottom:536.373436pt;}
.yd1{bottom:539.093435pt;}
.y9a{bottom:540.213435pt;}
.y84{bottom:546.613432pt;}
.y8d{bottom:547.573432pt;}
.y1{bottom:551.733430pt;}
.y83{bottom:559.413427pt;}
.y8c{bottom:560.373427pt;}
.yf{bottom:563.093425pt;}
.y14{bottom:564.533425pt;}
.y82{bottom:572.213422pt;}
.y8b{bottom:573.173421pt;}
.yd0{bottom:576.053420pt;}
.y81{bottom:585.013417pt;}
.y8a{bottom:585.973416pt;}
.y13{bottom:593.333413pt;}
.y97{bottom:597.333412pt;}
.y80{bottom:597.813412pt;}
.y89{bottom:598.773411pt;}
.ya4{bottom:603.733409pt;}
.y7f{bottom:610.613406pt;}
.y88{bottom:611.573406pt;}
.ycf{bottom:612.853406pt;}
.y11{bottom:616.373333pt;}
.y25{bottom:619.253403pt;}
.y4b{bottom:619.573403pt;}
.yb4{bottom:622.293402pt;}
.y7e{bottom:623.413401pt;}
.y87{bottom:624.373401pt;}
.y7d{bottom:636.213396pt;}
.ya5{bottom:643.733393pt;}
.yce{bottom:649.653391pt;}
.yb3{bottom:653.813389pt;}
.y5c{bottom:654.133389pt;}
.y99{bottom:669.813383pt;}
.y24{bottom:670.453382pt;}
.y4a{bottom:670.773382pt;}
.y23{bottom:686.133376pt;}
.ycd{bottom:686.453376pt;}
.y22{bottom:708.533367pt;}
.h9{height:0.160000pt;}
.h1b{height:12.000000pt;}
.h15{height:15.360000pt;}
.h1a{height:17.920000pt;}
.h1d{height:28.579676pt;}
.h1c{height:29.982488pt;}
.h17{height:55.514618pt;}
.h16{height:57.247813pt;}
.h2{height:61.409975pt;}
.h18{height:65.779874pt;}
.hf{height:66.723723pt;}
.h5{height:69.285910pt;}
.h19{height:70.723822pt;}
.he{height:72.089971pt;}
.h4{height:72.284034pt;}
.h21{height:74.023408pt;}
.h23{height:77.226532pt;}
.hb{height:78.097469pt;}
.h13{height:78.760906pt;}
.h1{height:83.437467pt;}
.ha{height:88.777464pt;}
.hd{height:88.828089pt;}
.h8{height:92.671838pt;}
.h7{height:93.206838pt;}
.h1f{height:98.895273pt;}
.h6{height:103.174646pt;}
.h1e{height:108.370269pt;}
.h12{height:118.437453pt;}
.h24{height:122.152451pt;}
.h3{height:123.562451pt;}
.h22{height:130.043073pt;}
.h11{height:133.499947pt;}
.h10{height:149.019315pt;}
.hc{height:152.690564pt;}
.h20{height:162.972435pt;}
.h14{height:166.987433pt;}
.h0{height:793.333333pt;}
.h25{height:1122.666667pt;}
.w1{width:0.320000pt;}
.w2{width:5.120000pt;}
.w5{width:7.840000pt;}
.w8{width:9.120000pt;}
.w7{width:10.400000pt;}
.w4{width:12.960000pt;}
.wf{width:14.400000pt;}
.w3{width:15.520000pt;}
.wc{width:16.960000pt;}
.w10{width:18.080000pt;}
.wd{width:23.520000pt;}
.wb{width:29.120000pt;}
.we{width:29.280000pt;}
.wa{width:29.440000pt;}
.w9{width:31.840000pt;}
.w6{width:32.160000pt;}
.w11{width:793.333333pt;}
.w0{width:1122.666667pt;}
.xc{left:-154.079458pt;}
.x0{left:0.000000pt;}
.x1a{left:131.027414pt;}
.x34{left:135.027520pt;}
.x96{left:137.107945pt;}
.x8a{left:139.027944pt;}
.x5{left:149.747940pt;}
.x30{left:151.027940pt;}
.x97{left:161.107936pt;}
.x93{left:164.307934pt;}
.x26{left:169.427932pt;}
.x31{left:175.027930pt;}
.x86{left:182.227927pt;}
.x25{left:185.907926pt;}
.x2a{left:188.787924pt;}
.x90{left:193.747923pt;}
.x8e{left:194.707922pt;}
.x1e{left:198.547921pt;}
.x12{left:199.667920pt;}
.x7f{left:207.027917pt;}
.x7d{left:211.027916pt;}
.x82{left:212.467915pt;}
.x7e{left:214.227914pt;}
.x83{left:215.987914pt;}
.x11{left:219.507912pt;}
.x1f{left:230.067908pt;}
.x35{left:231.667907pt;}
.x29{left:232.947907pt;}
.x85{left:235.027906pt;}
.x10{left:243.027903pt;}
.x2e{left:247.347901pt;}
.x87{left:249.427900pt;}
.x91{left:252.147899pt;}
.x27{left:253.267899pt;}
.x89{left:255.027898pt;}
.x9{left:259.187896pt;}
.x28{left:260.467896pt;}
.xa{left:263.027895pt;}
.x13{left:269.427892pt;}
.x80{left:271.027892pt;}
.x2f{left:272.947891pt;}
.x8b{left:283.027887pt;}
.x37{left:290.867884pt;}
.x95{left:308.307877pt;}
.x84{left:310.867876pt;}
.x36{left:323.507871pt;}
.x38{left:339.347200pt;}
.x52{left:340.467200pt;}
.x6c{left:341.587200pt;}
.x39{left:353.107200pt;}
.x53{left:355.987200pt;}
.x6d{left:357.907200pt;}
.x1c{left:366.547853pt;}
.x54{left:367.507200pt;}
.x33{left:369.107852pt;}
.x98{left:371.987851pt;}
.x8{left:374.387850pt;}
.x55{left:381.427200pt;}
.x3a{left:386.067200pt;}
.x6e{left:387.507200pt;}
.x56{left:397.427200pt;}
.x2{left:403.507839pt;}
.x57{left:414.067200pt;}
.x3b{left:418.227200pt;}
.x3c{left:428.947200pt;}
.x32{left:431.027828pt;}
.x3d{left:444.947200pt;}
.x58{left:447.027200pt;}
.x1d{left:457.107817pt;}
.x3e{left:458.707200pt;}
.x20{left:462.227815pt;}
.x59{left:463.187200pt;}
.x3f{left:470.227200pt;}
.x7{left:477.907809pt;}
.x5a{left:479.827200pt;}
.x21{left:484.467806pt;}
.x40{left:488.787200pt;}
.x4{left:490.227804pt;}
.x5b{left:495.347200pt;}
.x41{left:496.787200pt;}
.x92{left:498.227801pt;}
.x42{left:510.547200pt;}
.x5c{left:512.627200pt;}
.x1b{left:520.787258pt;}
.x43{left:526.547200pt;}
.x5d{left:528.147200pt;}
.x6f{left:529.107200pt;}
.x44{left:535.827200pt;}
.x5e{left:541.907200pt;}
.x70{left:544.147200pt;}
.x2d{left:552.627779pt;}
.x8c{left:558.547777pt;}
.x71{left:560.147200pt;}
.x1{left:566.867773pt;}
.x45{left:568.787200pt;}
.x72{left:573.907200pt;}
.x19{left:581.587767pt;}
.x46{left:584.307200pt;}
.x5f{left:585.427200pt;}
.x17{left:589.587764pt;}
.x47{left:598.067200pt;}
.x16{left:605.587758pt;}
.x14{left:614.227754pt;}
.x60{left:617.267200pt;}
.x94{left:623.347751pt;}
.x81{left:624.307750pt;}
.x61{left:625.267200pt;}
.x48{left:631.027200pt;}
.x15{left:632.947747pt;}
.x62{left:640.787200pt;}
.xd{left:644.947742pt;}
.xf{left:646.707741pt;}
.x73{left:651.027200pt;}
.x2b{left:652.307739pt;}
.xe{left:662.067735pt;}
.x74{left:664.787200pt;}
.x18{left:668.947732pt;}
.x88{left:672.307731pt;}
.x2c{left:676.307729pt;}
.x75{left:680.787200pt;}
.x3{left:688.307725pt;}
.x63{left:695.827200pt;}
.x76{left:697.427200pt;}
.x6{left:699.667720pt;}
.x49{left:706.067200pt;}
.x77{left:711.187200pt;}
.x8f{left:715.027714pt;}
.x8d{left:721.587711pt;}
.x78{left:726.707200pt;}
.x64{left:728.627200pt;}
.x65{left:736.627200pt;}
.x4a{left:738.867200pt;}
.x79{left:743.027200pt;}
.x7a{left:753.587200pt;}
.x4b{left:755.187200pt;}
.x66{left:766.067200pt;}
.x7b{left:769.587200pt;}
.x4c{left:770.867200pt;}
.x22{left:779.027688pt;}
.x67{left:783.347200pt;}
.x24{left:789.267684pt;}
.xb{left:799.027200pt;}
.x68{left:799.987200pt;}
.x4d{left:803.667200pt;}
.x69{left:816.627200pt;}
.x4e{left:820.147200pt;}
.x23{left:821.747671pt;}
.x6a{left:831.987200pt;}
.x6b{left:847.187200pt;}
.x4f{left:849.587200pt;}
.x7c{left:860.627200pt;}
.x50{left:864.947200pt;}
.x51{left:876.627200pt;}
}




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