
    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_83608e433a1997da86479644.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_0c6ecabfdd8f8cdd04e8347c.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_d4a1a01cc7596412f2fd5435.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959961;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_742331d6e711669429844925.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_799e69cf99ea5a8b26c81fad.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_82d5995b66dd063e6a9c2fd0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.689941;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_cb80de6d83c32d4535a81c2c.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5e7bc95b69f85bf37c6ab069.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.962402;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_9f350f777cc500cc5c69fdb6.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.065430;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_c1a6e47538638502cc619d14.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.064941;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_03632a025f7cb2eebb4b396a.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.166504;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_2bf8f7e19e73da41378db653.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_4380e3eccf1b19cde79664da.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.061035;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_09f80630b5d0279d2c6af3e2.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_7bdcfc108cd666ac5a77c939.woff2')format("woff");}.fff{font-family:fff;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,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);}
.m2{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);}
.v6{vertical-align:-20.879932px;}
.v3{vertical-align:-15.120072px;}
.v8{vertical-align:-12.239870px;}
.v5{vertical-align:-5.760130px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:12.239870px;}
.v2{vertical-align:15.120072px;}
.v4{vertical-align:23.759996px;}
.v1{vertical-align:25.620000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.055116px;}
.ls2{letter-spacing:0.098552px;}
.ls3{letter-spacing:0.149150px;}
.ls1{letter-spacing:0.546673px;}
.ls5{letter-spacing:7.570750px;}
.ls4{letter-spacing:26.290768px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-54.000000px;}
.ws6{word-spacing:-14.628510px;}
.ws3{word-spacing:-14.573394px;}
.ws7{word-spacing:-11.880495px;}
.ws4{word-spacing:-9.438126px;}
.ws2{word-spacing:-9.187556px;}
.ws5{word-spacing:-8.553927px;}
.ws8{word-spacing:-7.920307px;}
.ws0{word-spacing:0.000000px;}
._21{margin-left:-13.182434px;}
._1e{margin-left:-11.015858px;}
._1d{margin-left:-7.864768px;}
._5{margin-left:-6.000000px;}
._9{margin-left:-4.963732px;}
._17{margin-left:-3.755527px;}
._8{margin-left:-2.715951px;}
._2{margin-left:-1.195515px;}
._6{width:1.278751px;}
._13{width:2.402093px;}
._12{width:3.910321px;}
._d{width:5.087917px;}
._c{width:6.115029px;}
._1{width:7.476098px;}
._7{width:8.665930px;}
._16{width:10.064233px;}
._4{width:11.826000px;}
._a{width:13.366467px;}
._3{width:16.561579px;}
._b{width:18.013357px;}
._10{width:19.045594px;}
._1b{width:20.964780px;}
._1a{width:22.403529px;}
._18{width:24.081550px;}
._19{width:25.457245px;}
._f{width:26.933215px;}
._e{width:27.938376px;}
._15{width:31.222606px;}
._14{width:32.655581px;}
._1c{width:33.814828px;}
._1f{width:35.291399px;}
._20{width:38.542901px;}
._11{width:42.957915px;}
._27{width:50.113667px;}
._29{width:64.727951px;}
._25{width:76.467800px;}
._23{width:80.154483px;}
._24{width:87.531033px;}
._26{width:101.400129px;}
._2a{width:136.454686px;}
._28{width:195.119251px;}
._22{width:201.541784px;}
._0{width:1952.688000px;}
.fc4{color:rgb(70,120,134);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,110,178);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:36.001395px;}
.fsa{font-size:38.881485px;}
.fs9{font-size:41.761620px;}
.fs5{font-size:42.000000px;}
.fs6{font-size:47.820600px;}
.fs1{font-size:48.000000px;}
.fsd{font-size:48.241800px;}
.fs4{font-size:49.072383px;}
.fs2{font-size:54.000000px;}
.fse{font-size:54.002250px;}
.fsb{font-size:59.762250px;}
.fs8{font-size:66.242700px;}
.fs0{font-size:72.000000px;}
.fsc{font-size:72.002705px;}
.fs3{font-size:96.000000px;}
.fs7{font-size:108.004050px;}
.y0{bottom:0.000000px;}
.ycf{bottom:1.439965px;}
.y9a{bottom:2.699958px;}
.yaf{bottom:2.699960px;}
.yd1{bottom:2.700027px;}
.yea{bottom:2.700028px;}
.y1f{bottom:4.289325px;}
.y1e{bottom:19.233262px;}
.y1d{bottom:34.177200px;}
.y1b{bottom:58.200000px;}
.y1c{bottom:61.708950px;}
.y22{bottom:64.500000px;}
.yf9{bottom:118.980079px;}
.ydb{bottom:121.680039px;}
.yc8{bottom:124.560036px;}
.y97{bottom:137.700096px;}
.yf8{bottom:139.860077px;}
.y49{bottom:140.220085px;}
.yda{bottom:142.560036px;}
.yc7{bottom:145.440033px;}
.y71{bottom:145.980079px;}
.yac{bottom:147.060036px;}
.y96{bottom:158.580093px;}
.yf7{bottom:160.740074px;}
.y48{bottom:161.100083px;}
.yd9{bottom:163.440033px;}
.yc6{bottom:166.320099px;}
.y70{bottom:166.860077px;}
.yca{bottom:167.400055px;}
.yab{bottom:167.940033px;}
.y95{bottom:179.460091px;}
.yf6{bottom:181.620072px;}
.y47{bottom:181.980079px;}
.yd8{bottom:184.320099px;}
.yc5{bottom:187.200096px;}
.y6f{bottom:187.740074px;}
.yaa{bottom:188.820099px;}
.yc9{bottom:200.160049px;}
.y94{bottom:200.340088px;}
.yf5{bottom:202.500068px;}
.y46{bottom:202.680039px;}
.yd7{bottom:205.200096px;}
.yc4{bottom:208.080093px;}
.y6e{bottom:208.620072px;}
.ya9{bottom:209.700096px;}
.y93{bottom:221.220085px;}
.yf4{bottom:223.380066px;}
.y45{bottom:223.560036px;}
.yd6{bottom:226.080093px;}
.yc3{bottom:228.960091px;}
.y6d{bottom:229.500068px;}
.ya8{bottom:230.580093px;}
.y92{bottom:242.100083px;}
.yf3{bottom:244.260064px;}
.y44{bottom:244.440033px;}
.yd5{bottom:246.960091px;}
.yc2{bottom:249.840088px;}
.y6c{bottom:250.380066px;}
.ya7{bottom:251.460091px;}
.y91{bottom:262.980079px;}
.yf2{bottom:265.140060px;}
.y43{bottom:265.320099px;}
.yd4{bottom:267.840088px;}
.yc1{bottom:270.720085px;}
.y6b{bottom:271.260064px;}
.yff{bottom:271.620072px;}
.ya6{bottom:272.340088px;}
.y90{bottom:283.860077px;}
.yf1{bottom:286.020058px;}
.y42{bottom:286.200096px;}
.yc0{bottom:291.600083px;}
.y6a{bottom:292.140060px;}
.yfe{bottom:292.500068px;}
.ya5{bottom:293.220085px;}
.yd3{bottom:300.780052px;}
.y8f{bottom:304.740074px;}
.yf0{bottom:306.900055px;}
.ybf{bottom:312.480079px;}
.y69{bottom:313.020058px;}
.yfd{bottom:313.380066px;}
.ya4{bottom:314.100083px;}
.yd2{bottom:321.660049px;}
.y8e{bottom:325.620072px;}
.yef{bottom:327.780052px;}
.ybe{bottom:333.360077px;}
.y68{bottom:333.900055px;}
.y41{bottom:334.080093px;}
.yfc{bottom:334.260064px;}
.ya3{bottom:334.980079px;}
.y8d{bottom:346.500068px;}
.yee{bottom:348.660049px;}
.yd0{bottom:350.280052px;}
.ybd{bottom:354.240074px;}
.y67{bottom:354.780052px;}
.y40{bottom:354.960091px;}
.yfb{bottom:355.140060px;}
.ya2{bottom:355.860077px;}
.yce{bottom:364.320099px;}
.y8c{bottom:367.380066px;}
.yed{bottom:369.540047px;}
.ybc{bottom:375.120072px;}
.y66{bottom:375.660049px;}
.y3f{bottom:375.840088px;}
.ya1{bottom:376.740074px;}
.y11a{bottom:378.000068px;}
.y8b{bottom:388.260064px;}
.yec{bottom:390.420043px;}
.y119{bottom:395.100083px;}
.ybb{bottom:396.000068px;}
.y65{bottom:396.540047px;}
.y3e{bottom:396.720085px;}
.ya0{bottom:397.620072px;}
.yfa{bottom:403.020058px;}
.y8a{bottom:409.140060px;}
.yeb{bottom:411.300041px;}
.y118{bottom:412.200096px;}
.yba{bottom:416.880066px;}
.y64{bottom:417.420043px;}
.y3d{bottom:417.600083px;}
.y9f{bottom:418.500068px;}
.y117{bottom:429.120072px;}
.y89{bottom:430.020058px;}
.yb9{bottom:437.760064px;}
.y63{bottom:438.300041px;}
.y3c{bottom:438.480079px;}
.y9e{bottom:439.380066px;}
.ye9{bottom:439.920043px;}
.y116{bottom:446.220085px;}
.y88{bottom:450.900055px;}
.ye8{bottom:453.960091px;}
.yb8{bottom:458.640060px;}
.y62{bottom:459.180039px;}
.y3b{bottom:459.360077px;}
.y9d{bottom:460.260064px;}
.y115{bottom:463.320099px;}
.y87{bottom:471.780052px;}
.yb7{bottom:479.520058px;}
.y61{bottom:480.060036px;}
.y3a{bottom:480.240074px;}
.y114{bottom:480.420043px;}
.y86{bottom:492.660049px;}
.y9c{bottom:493.200096px;}
.y113{bottom:497.520058px;}
.yb6{bottom:500.400055px;}
.y39{bottom:501.120072px;}
.y60{bottom:509.940033px;}
.y85{bottom:513.540047px;}
.y112{bottom:514.620072px;}
.yb5{bottom:521.280052px;}
.y38{bottom:522.000068px;}
.y111{bottom:531.720085px;}
.y84{bottom:534.420043px;}
.y9b{bottom:541.080093px;}
.yb4{bottom:542.160049px;}
.y37{bottom:542.880066px;}
.y110{bottom:548.820099px;}
.y83{bottom:555.300041px;}
.y5f{bottom:557.820099px;}
.yb3{bottom:563.040047px;}
.y36{bottom:563.400055px;}
.y99{bottom:565.200096px;}
.y10f{bottom:565.920043px;}
.y82{bottom:576.180039px;}
.y98{bottom:579.240074px;}
.y10e{bottom:582.840088px;}
.yb2{bottom:583.920043px;}
.y35{bottom:586.080093px;}
.y81{bottom:597.060036px;}
.y10d{bottom:599.940033px;}
.y34{bottom:601.200096px;}
.yb1{bottom:604.800041px;}
.y5e{bottom:605.700096px;}
.y10c{bottom:617.040047px;}
.y80{bottom:617.940033px;}
.y33{bottom:624.060036px;}
.yb0{bottom:625.140060px;}
.y5d{bottom:626.400055px;}
.y7f{bottom:638.820099px;}
.y32{bottom:642.960091px;}
.y10b{bottom:644.040047px;}
.y5c{bottom:647.280052px;}
.yae{bottom:647.820099px;}
.ycd{bottom:653.760064px;}
.y7e{bottom:659.700096px;}
.yad{bottom:661.860077px;}
.y31{bottom:662.040047px;}
.y5b{bottom:668.160049px;}
.ycc{bottom:674.100083px;}
.y7d{bottom:680.400055px;}
.y30{bottom:680.940033px;}
.y5a{bottom:689.040081px;}
.ycb{bottom:689.760064px;}
.y10a{bottom:691.920078px;}
.y2f{bottom:700.020058px;}
.y7c{bottom:701.280052px;}
.y59{bottom:709.920078px;}
.y109{bottom:712.800076px;}
.y2e{bottom:718.920078px;}
.y7b{bottom:722.160049px;}
.y58{bottom:730.800076px;}
.y108{bottom:733.680073px;}
.y2d{bottom:737.820065px;}
.y7a{bottom:743.040081px;}
.y57{bottom:751.680073px;}
.y107{bottom:754.560070px;}
.y2c{bottom:756.900055px;}
.y79{bottom:763.920078px;}
.ye7{bottom:769.680073px;}
.y106{bottom:775.440067px;}
.y2b{bottom:775.800076px;}
.y78{bottom:784.800076px;}
.ye6{bottom:790.560070px;}
.y2a{bottom:794.880066px;}
.y105{bottom:796.320065px;}
.y56{bottom:799.560070px;}
.y77{bottom:805.680073px;}
.ye5{bottom:811.440067px;}
.y104{bottom:817.200061px;}
.y55{bottom:820.440067px;}
.y76{bottom:826.560070px;}
.y29{bottom:828.540081px;}
.ye4{bottom:832.320065px;}
.y103{bottom:838.080059px;}
.y54{bottom:841.320065px;}
.y75{bottom:847.440067px;}
.y28{bottom:850.140060px;}
.y1a{bottom:850.260000px;}
.ye3{bottom:853.200061px;}
.y53{bottom:862.200061px;}
.y19{bottom:862.260000px;}
.y102{bottom:867.960056px;}
.y74{bottom:868.320065px;}
.y27{bottom:871.020058px;}
.ye2{bottom:874.080059px;}
.y18{bottom:874.260000px;}
.y9{bottom:874.350000px;}
.y52{bottom:883.080059px;}
.y17{bottom:886.260000px;}
.y73{bottom:889.200061px;}
.ye1{bottom:894.960056px;}
.y16{bottom:898.260000px;}
.y8{bottom:903.450000px;}
.y51{bottom:903.960056px;}
.y72{bottom:910.080059px;}
.y101{bottom:910.620072px;}
.ye0{bottom:915.840054px;}
.y15{bottom:921.510000px;}
.y26{bottom:930.960056px;}
.y14{bottom:933.510000px;}
.ydf{bottom:936.720051px;}
.y100{bottom:937.620072px;}
.y7{bottom:943.830000px;}
.y13{bottom:945.510000px;}
.y50{bottom:951.840054px;}
.y12{bottom:957.510000px;}
.yde{bottom:957.600083px;}
.y25{bottom:964.440067px;}
.y11{bottom:969.510000px;}
.y4f{bottom:972.720051px;}
.ydd{bottom:978.480063px;}
.y6{bottom:982.365000px;}
.y10{bottom:992.760000px;}
.y4e{bottom:993.600065px;}
.y24{bottom:997.920061px;}
.yf{bottom:1004.760000px;}
.ydc{bottom:1008.360060px;}
.y5{bottom:1011.165000px;}
.y4d{bottom:1014.480063px;}
.ye{bottom:1016.760000px;}
.yd{bottom:1028.760000px;}
.y4c{bottom:1035.360060px;}
.y4{bottom:1039.965000px;}
.yc{bottom:1040.760000px;}
.yb{bottom:1052.760000px;}
.y4b{bottom:1056.240074px;}
.y23{bottom:1067.400072px;}
.y4a{bottom:1077.120072px;}
.ya{bottom:1078.260000px;}
.y3{bottom:1081.485000px;}
.y21{bottom:1144.500000px;}
.y20{bottom:1165.500000px;}
.y2{bottom:1169.970000px;}
.y1{bottom:1191.570000px;}
.h18{height:14.039977px;}
.h1c{height:14.039979px;}
.h20{height:14.040046px;}
.h22{height:14.040047px;}
.h21{height:14.939964px;}
.h1b{height:15.659981px;}
.h1d{height:15.660015px;}
.h16{height:16.199960px;}
.h1f{height:16.379998px;}
.hb{height:33.226911px;}
.h13{height:35.479276px;}
.h11{height:35.479411px;}
.h12{height:35.479546px;}
.h10{height:35.479551px;}
.h5{height:36.000000px;}
.h6{height:36.804287px;}
.hc{height:37.494141px;}
.h19{height:40.845352px;}
.h8{height:43.804688px;}
.h23{height:45.722608px;}
.ha{height:46.538700px;}
.h1e{height:48.226497px;}
.h17{height:49.994065px;}
.h7{height:50.062500px;}
.h15{height:50.599483px;}
.h14{height:50.766972px;}
.h1a{height:55.827588px;}
.he{height:56.086349px;}
.h3{height:56.320312px;}
.hf{height:67.827608px;}
.h4{height:72.000000px;}
.h1{height:75.093750px;}
.h2{height:75.682500px;}
.hd{height:81.213983px;}
.h9{height:1262.880000px;}
.h0{height:1263.000000px;}
.w14{width:2.520024px;}
.wf{width:2.699993px;}
.w13{width:2.879997px;}
.we{width:2.880031px;}
.wa{width:5.580025px;}
.w7{width:6.479976px;}
.w11{width:6.479978px;}
.wc{width:6.480010px;}
.w16{width:6.480011px;}
.wd{width:7.019989px;}
.w9{width:7.019990px;}
.w4{width:9.000000px;}
.w8{width:38.519989px;}
.w12{width:38.519990px;}
.w5{width:50.939999px;}
.wb{width:100.619968px;}
.w15{width:170.639992px;}
.w6{width:171.180003px;}
.w10{width:195.300007px;}
.w3{width:683.273100px;}
.w0{width:892.500000px;}
.w1{width:892.980000px;}
.w2{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:1.337034px;}
.x1{left:58.500000px;}
.xb{left:76.052700px;}
.xa{left:103.466400px;}
.xd{left:105.000000px;}
.x11{left:108.000000px;}
.x18{left:116.099997px;}
.x1f{left:128.519998px;}
.x13{left:139.860000px;}
.x20{left:150.479994px;}
.x12{left:214.379998px;}
.x9{left:223.110000px;}
.x2{left:241.050000px;}
.x3{left:263.715000px;}
.x4{left:297.045000px;}
.x22{left:322.740006px;}
.x28{left:335.160015px;}
.x15{left:351.000000px;}
.x23{left:361.259994px;}
.x24{left:368.279983px;}
.x25{left:371.160015px;}
.x26{left:373.860008px;}
.x29{left:380.699993px;}
.x2a{left:383.579990px;}
.x1a{left:386.100014px;}
.x5{left:400.290000px;}
.x16{left:401.939999px;}
.x2d{left:415.800007px;}
.x1b{left:424.620002px;}
.x1c{left:431.639992px;}
.x1d{left:437.220017px;}
.x2c{left:443.325000px;}
.x10{left:446.670000px;}
.x1e{left:537.839985px;}
.x2b{left:556.740006px;}
.x27{left:569.160015px;}
.x17{left:572.939999px;}
.xf{left:574.950000px;}
.x6{left:605.490000px;}
.x8{left:627.990000px;}
.x7{left:634.410000px;}
.xe{left:704.355000px;}
.x2e{left:705.600014px;}
.x21{left:731.879998px;}
.x14{left:773.100014px;}
.x19{left:774.179970px;}
@media print{
.v6{vertical-align:-18.559940pt;}
.v3{vertical-align:-13.440064pt;}
.v8{vertical-align:-10.879884pt;}
.v5{vertical-align:-5.120116pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:10.879884pt;}
.v2{vertical-align:13.440064pt;}
.v4{vertical-align:21.119996pt;}
.v1{vertical-align:22.773333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.048992pt;}
.ls2{letter-spacing:0.087602pt;}
.ls3{letter-spacing:0.132578pt;}
.ls1{letter-spacing:0.485932pt;}
.ls5{letter-spacing:6.729555pt;}
.ls4{letter-spacing:23.369571pt;}
.ws1{word-spacing:-48.000000pt;}
.ws6{word-spacing:-13.003120pt;}
.ws3{word-spacing:-12.954128pt;}
.ws7{word-spacing:-10.560440pt;}
.ws4{word-spacing:-8.389445pt;}
.ws2{word-spacing:-8.166717pt;}
.ws5{word-spacing:-7.603490pt;}
.ws8{word-spacing:-7.040273pt;}
.ws0{word-spacing:0.000000pt;}
._21{margin-left:-11.717719pt;}
._1e{margin-left:-9.791874pt;}
._1d{margin-left:-6.990905pt;}
._5{margin-left:-5.333333pt;}
._9{margin-left:-4.412206pt;}
._17{margin-left:-3.338246pt;}
._8{margin-left:-2.414178pt;}
._2{margin-left:-1.062680pt;}
._6{width:1.136668pt;}
._13{width:2.135194pt;}
._12{width:3.475841pt;}
._d{width:4.522593pt;}
._c{width:5.435582pt;}
._1{width:6.645421pt;}
._7{width:7.703049pt;}
._16{width:8.945985pt;}
._4{width:10.512000pt;}
._a{width:11.881304pt;}
._3{width:14.721403pt;}
._b{width:16.011873pt;}
._10{width:16.929417pt;}
._1b{width:18.635360pt;}
._1a{width:19.914248pt;}
._18{width:21.405823pt;}
._19{width:22.628662pt;}
._f{width:23.940636pt;}
._e{width:24.834112pt;}
._15{width:27.753428pt;}
._14{width:29.027183pt;}
._1c{width:30.057625pt;}
._1f{width:31.370132pt;}
._20{width:34.260356pt;}
._11{width:38.184813pt;}
._27{width:44.545482pt;}
._29{width:57.535957pt;}
._25{width:67.971378pt;}
._23{width:71.248430pt;}
._24{width:77.805362pt;}
._26{width:90.133448pt;}
._2a{width:121.293054pt;}
._28{width:173.439334pt;}
._22{width:179.148252pt;}
._0{width:1735.722667pt;}
.fsf{font-size:32.001240pt;}
.fsa{font-size:34.561320pt;}
.fs9{font-size:37.121440pt;}
.fs5{font-size:37.333333pt;}
.fs6{font-size:42.507200pt;}
.fs1{font-size:42.666667pt;}
.fsd{font-size:42.881600pt;}
.fs4{font-size:43.619896pt;}
.fs2{font-size:48.000000pt;}
.fse{font-size:48.002000pt;}
.fsb{font-size:53.122000pt;}
.fs8{font-size:58.882400pt;}
.fs0{font-size:64.000000pt;}
.fsc{font-size:64.002404pt;}
.fs3{font-size:85.333333pt;}
.fs7{font-size:96.003600pt;}
.y0{bottom:0.000000pt;}
.ycf{bottom:1.279969pt;}
.y9a{bottom:2.399963pt;}
.yaf{bottom:2.399964pt;}
.yd1{bottom:2.400024pt;}
.yea{bottom:2.400025pt;}
.y1f{bottom:3.812733pt;}
.y1e{bottom:17.096233pt;}
.y1d{bottom:30.379733pt;}
.y1b{bottom:51.733333pt;}
.y1c{bottom:54.852400pt;}
.y22{bottom:57.333333pt;}
.yf9{bottom:105.760071pt;}
.ydb{bottom:108.160035pt;}
.yc8{bottom:110.720032pt;}
.y97{bottom:122.400086pt;}
.yf8{bottom:124.320069pt;}
.y49{bottom:124.640076pt;}
.yda{bottom:126.720032pt;}
.yc7{bottom:129.280030pt;}
.y71{bottom:129.760071pt;}
.yac{bottom:130.720032pt;}
.y96{bottom:140.960083pt;}
.yf7{bottom:142.880066pt;}
.y48{bottom:143.200074pt;}
.yd9{bottom:145.280030pt;}
.yc6{bottom:147.840088pt;}
.y70{bottom:148.320069pt;}
.yca{bottom:148.800049pt;}
.yab{bottom:149.280030pt;}
.y95{bottom:159.520081pt;}
.yf6{bottom:161.440064pt;}
.y47{bottom:161.760071pt;}
.yd8{bottom:163.840088pt;}
.yc5{bottom:166.400086pt;}
.y6f{bottom:166.880066pt;}
.yaa{bottom:167.840088pt;}
.yc9{bottom:177.920044pt;}
.y94{bottom:178.080079pt;}
.yf5{bottom:180.000061pt;}
.y46{bottom:180.160035pt;}
.yd7{bottom:182.400086pt;}
.yc4{bottom:184.960083pt;}
.y6e{bottom:185.440064pt;}
.ya9{bottom:186.400086pt;}
.y93{bottom:196.640076pt;}
.yf4{bottom:198.560059pt;}
.y45{bottom:198.720032pt;}
.yd6{bottom:200.960083pt;}
.yc3{bottom:203.520081pt;}
.y6d{bottom:204.000061pt;}
.ya8{bottom:204.960083pt;}
.y92{bottom:215.200074pt;}
.yf3{bottom:217.120057pt;}
.y44{bottom:217.280030pt;}
.yd5{bottom:219.520081pt;}
.yc2{bottom:222.080079pt;}
.y6c{bottom:222.560059pt;}
.ya7{bottom:223.520081pt;}
.y91{bottom:233.760071pt;}
.yf2{bottom:235.680054pt;}
.y43{bottom:235.840088pt;}
.yd4{bottom:238.080079pt;}
.yc1{bottom:240.640076pt;}
.y6b{bottom:241.120057pt;}
.yff{bottom:241.440064pt;}
.ya6{bottom:242.080079pt;}
.y90{bottom:252.320069pt;}
.yf1{bottom:254.240052pt;}
.y42{bottom:254.400086pt;}
.yc0{bottom:259.200074pt;}
.y6a{bottom:259.680054pt;}
.yfe{bottom:260.000061pt;}
.ya5{bottom:260.640076pt;}
.yd3{bottom:267.360047pt;}
.y8f{bottom:270.880066pt;}
.yf0{bottom:272.800049pt;}
.ybf{bottom:277.760071pt;}
.y69{bottom:278.240052pt;}
.yfd{bottom:278.560059pt;}
.ya4{bottom:279.200074pt;}
.yd2{bottom:285.920044pt;}
.y8e{bottom:289.440064pt;}
.yef{bottom:291.360047pt;}
.ybe{bottom:296.320069pt;}
.y68{bottom:296.800049pt;}
.y41{bottom:296.960083pt;}
.yfc{bottom:297.120057pt;}
.ya3{bottom:297.760071pt;}
.y8d{bottom:308.000061pt;}
.yee{bottom:309.920044pt;}
.yd0{bottom:311.360047pt;}
.ybd{bottom:314.880066pt;}
.y67{bottom:315.360047pt;}
.y40{bottom:315.520081pt;}
.yfb{bottom:315.680054pt;}
.ya2{bottom:316.320069pt;}
.yce{bottom:323.840088pt;}
.y8c{bottom:326.560059pt;}
.yed{bottom:328.480042pt;}
.ybc{bottom:333.440064pt;}
.y66{bottom:333.920044pt;}
.y3f{bottom:334.080079pt;}
.ya1{bottom:334.880066pt;}
.y11a{bottom:336.000061pt;}
.y8b{bottom:345.120057pt;}
.yec{bottom:347.040039pt;}
.y119{bottom:351.200074pt;}
.ybb{bottom:352.000061pt;}
.y65{bottom:352.480042pt;}
.y3e{bottom:352.640076pt;}
.ya0{bottom:353.440064pt;}
.yfa{bottom:358.240052pt;}
.y8a{bottom:363.680054pt;}
.yeb{bottom:365.600037pt;}
.y118{bottom:366.400086pt;}
.yba{bottom:370.560059pt;}
.y64{bottom:371.040039pt;}
.y3d{bottom:371.200074pt;}
.y9f{bottom:372.000061pt;}
.y117{bottom:381.440064pt;}
.y89{bottom:382.240052pt;}
.yb9{bottom:389.120057pt;}
.y63{bottom:389.600037pt;}
.y3c{bottom:389.760071pt;}
.y9e{bottom:390.560059pt;}
.ye9{bottom:391.040039pt;}
.y116{bottom:396.640076pt;}
.y88{bottom:400.800049pt;}
.ye8{bottom:403.520081pt;}
.yb8{bottom:407.680054pt;}
.y62{bottom:408.160035pt;}
.y3b{bottom:408.320069pt;}
.y9d{bottom:409.120057pt;}
.y115{bottom:411.840088pt;}
.y87{bottom:419.360047pt;}
.yb7{bottom:426.240052pt;}
.y61{bottom:426.720032pt;}
.y3a{bottom:426.880066pt;}
.y114{bottom:427.040039pt;}
.y86{bottom:437.920044pt;}
.y9c{bottom:438.400086pt;}
.y113{bottom:442.240052pt;}
.yb6{bottom:444.800049pt;}
.y39{bottom:445.440064pt;}
.y60{bottom:453.280030pt;}
.y85{bottom:456.480042pt;}
.y112{bottom:457.440064pt;}
.yb5{bottom:463.360047pt;}
.y38{bottom:464.000061pt;}
.y111{bottom:472.640076pt;}
.y84{bottom:475.040039pt;}
.y9b{bottom:480.960083pt;}
.yb4{bottom:481.920044pt;}
.y37{bottom:482.560059pt;}
.y110{bottom:487.840088pt;}
.y83{bottom:493.600037pt;}
.y5f{bottom:495.840088pt;}
.yb3{bottom:500.480042pt;}
.y36{bottom:500.800049pt;}
.y99{bottom:502.400086pt;}
.y10f{bottom:503.040039pt;}
.y82{bottom:512.160035pt;}
.y98{bottom:514.880066pt;}
.y10e{bottom:518.080079pt;}
.yb2{bottom:519.040039pt;}
.y35{bottom:520.960083pt;}
.y81{bottom:530.720032pt;}
.y10d{bottom:533.280030pt;}
.y34{bottom:534.400086pt;}
.yb1{bottom:537.600037pt;}
.y5e{bottom:538.400086pt;}
.y10c{bottom:548.480042pt;}
.y80{bottom:549.280030pt;}
.y33{bottom:554.720032pt;}
.yb0{bottom:555.680054pt;}
.y5d{bottom:556.800049pt;}
.y7f{bottom:567.840088pt;}
.y32{bottom:571.520081pt;}
.y10b{bottom:572.480042pt;}
.y5c{bottom:575.360047pt;}
.yae{bottom:575.840088pt;}
.ycd{bottom:581.120057pt;}
.y7e{bottom:586.400086pt;}
.yad{bottom:588.320069pt;}
.y31{bottom:588.480042pt;}
.y5b{bottom:593.920044pt;}
.ycc{bottom:599.200074pt;}
.y7d{bottom:604.800049pt;}
.y30{bottom:605.280030pt;}
.y5a{bottom:612.480072pt;}
.ycb{bottom:613.120057pt;}
.y10a{bottom:615.040070pt;}
.y2f{bottom:622.240052pt;}
.y7c{bottom:623.360047pt;}
.y59{bottom:631.040070pt;}
.y109{bottom:633.600068pt;}
.y2e{bottom:639.040070pt;}
.y7b{bottom:641.920044pt;}
.y58{bottom:649.600068pt;}
.y108{bottom:652.160065pt;}
.y2d{bottom:655.840058pt;}
.y7a{bottom:660.480072pt;}
.y57{bottom:668.160065pt;}
.y107{bottom:670.720063pt;}
.y2c{bottom:672.800049pt;}
.y79{bottom:679.040070pt;}
.ye7{bottom:684.160065pt;}
.y106{bottom:689.280060pt;}
.y2b{bottom:689.600068pt;}
.y78{bottom:697.600068pt;}
.ye6{bottom:702.720063pt;}
.y2a{bottom:706.560059pt;}
.y105{bottom:707.840058pt;}
.y56{bottom:710.720063pt;}
.y77{bottom:716.160065pt;}
.ye5{bottom:721.280060pt;}
.y104{bottom:726.400055pt;}
.y55{bottom:729.280060pt;}
.y76{bottom:734.720063pt;}
.y29{bottom:736.480072pt;}
.ye4{bottom:739.840058pt;}
.y103{bottom:744.960053pt;}
.y54{bottom:747.840058pt;}
.y75{bottom:753.280060pt;}
.y28{bottom:755.680054pt;}
.y1a{bottom:755.786667pt;}
.ye3{bottom:758.400055pt;}
.y53{bottom:766.400055pt;}
.y19{bottom:766.453333pt;}
.y102{bottom:771.520050pt;}
.y74{bottom:771.840058pt;}
.y27{bottom:774.240052pt;}
.ye2{bottom:776.960053pt;}
.y18{bottom:777.120000pt;}
.y9{bottom:777.200000pt;}
.y52{bottom:784.960053pt;}
.y17{bottom:787.786667pt;}
.y73{bottom:790.400055pt;}
.ye1{bottom:795.520050pt;}
.y16{bottom:798.453333pt;}
.y8{bottom:803.066667pt;}
.y51{bottom:803.520050pt;}
.y72{bottom:808.960053pt;}
.y101{bottom:809.440064pt;}
.ye0{bottom:814.080048pt;}
.y15{bottom:819.120000pt;}
.y26{bottom:827.520050pt;}
.y14{bottom:829.786667pt;}
.ydf{bottom:832.640046pt;}
.y100{bottom:833.440064pt;}
.y7{bottom:838.960000pt;}
.y13{bottom:840.453333pt;}
.y50{bottom:846.080048pt;}
.y12{bottom:851.120000pt;}
.yde{bottom:851.200074pt;}
.y25{bottom:857.280060pt;}
.y11{bottom:861.786667pt;}
.y4f{bottom:864.640046pt;}
.ydd{bottom:869.760056pt;}
.y6{bottom:873.213333pt;}
.y10{bottom:882.453333pt;}
.y4e{bottom:883.200058pt;}
.y24{bottom:887.040055pt;}
.yf{bottom:893.120000pt;}
.ydc{bottom:896.320054pt;}
.y5{bottom:898.813333pt;}
.y4d{bottom:901.760056pt;}
.ye{bottom:903.786667pt;}
.yd{bottom:914.453333pt;}
.y4c{bottom:920.320054pt;}
.y4{bottom:924.413333pt;}
.yc{bottom:925.120000pt;}
.yb{bottom:935.786667pt;}
.y4b{bottom:938.880066pt;}
.y23{bottom:948.800064pt;}
.y4a{bottom:957.440064pt;}
.ya{bottom:958.453333pt;}
.y3{bottom:961.320000pt;}
.y21{bottom:1017.333333pt;}
.y20{bottom:1036.000000pt;}
.y2{bottom:1039.973333pt;}
.y1{bottom:1059.173333pt;}
.h18{height:12.479980pt;}
.h1c{height:12.479981pt;}
.h20{height:12.480041pt;}
.h22{height:12.480042pt;}
.h21{height:13.279968pt;}
.h1b{height:13.919983pt;}
.h1d{height:13.920013pt;}
.h16{height:14.399964pt;}
.h1f{height:14.559998pt;}
.hb{height:29.535032pt;}
.h13{height:31.537134pt;}
.h11{height:31.537254pt;}
.h12{height:31.537374pt;}
.h10{height:31.537378pt;}
.h5{height:32.000000pt;}
.h6{height:32.714922pt;}
.hc{height:33.328125pt;}
.h19{height:36.306980pt;}
.h8{height:38.937500pt;}
.h23{height:40.642318pt;}
.ha{height:41.367733pt;}
.h1e{height:42.867997pt;}
.h17{height:44.439169pt;}
.h7{height:44.500000pt;}
.h15{height:44.977318pt;}
.h14{height:45.126197pt;}
.h1a{height:49.624523pt;}
.he{height:49.854532pt;}
.h3{height:50.062500pt;}
.hf{height:60.291207pt;}
.h4{height:64.000000pt;}
.h1{height:66.750000pt;}
.h2{height:67.273333pt;}
.hd{height:72.190207pt;}
.h9{height:1122.560000pt;}
.h0{height:1122.666667pt;}
.w14{width:2.240021pt;}
.wf{width:2.399994pt;}
.w13{width:2.559997pt;}
.we{width:2.560028pt;}
.wa{width:4.960022pt;}
.w7{width:5.759979pt;}
.w11{width:5.759980pt;}
.wc{width:5.760009pt;}
.w16{width:5.760010pt;}
.wd{width:6.239990pt;}
.w9{width:6.239991pt;}
.w4{width:8.000000pt;}
.w8{width:34.239990pt;}
.w12{width:34.239991pt;}
.w5{width:45.279999pt;}
.wb{width:89.439972pt;}
.w15{width:151.679993pt;}
.w6{width:152.160003pt;}
.w10{width:173.600006pt;}
.w3{width:607.353867pt;}
.w0{width:793.333333pt;}
.w1{width:793.760000pt;}
.w2{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:1.188474pt;}
.x1{left:52.000000pt;}
.xb{left:67.602400pt;}
.xa{left:91.970133pt;}
.xd{left:93.333333pt;}
.x11{left:96.000000pt;}
.x18{left:103.199997pt;}
.x1f{left:114.239998pt;}
.x13{left:124.320000pt;}
.x20{left:133.759995pt;}
.x12{left:190.559998pt;}
.x9{left:198.320000pt;}
.x2{left:214.266667pt;}
.x3{left:234.413333pt;}
.x4{left:264.040000pt;}
.x22{left:286.880005pt;}
.x28{left:297.920013pt;}
.x15{left:312.000000pt;}
.x23{left:321.119995pt;}
.x24{left:327.359985pt;}
.x25{left:329.920013pt;}
.x26{left:332.320007pt;}
.x29{left:338.399994pt;}
.x2a{left:340.959991pt;}
.x1a{left:343.200012pt;}
.x5{left:355.813333pt;}
.x16{left:357.279999pt;}
.x2d{left:369.600006pt;}
.x1b{left:377.440002pt;}
.x1c{left:383.679993pt;}
.x1d{left:388.640015pt;}
.x2c{left:394.066667pt;}
.x10{left:397.040000pt;}
.x1e{left:478.079987pt;}
.x2b{left:494.880005pt;}
.x27{left:505.920013pt;}
.x17{left:509.279999pt;}
.xf{left:511.066667pt;}
.x6{left:538.213333pt;}
.x8{left:558.213333pt;}
.x7{left:563.920000pt;}
.xe{left:626.093333pt;}
.x2e{left:627.200012pt;}
.x21{left:650.559998pt;}
.x14{left:687.200012pt;}
.x19{left:688.159973pt;}
}




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