
    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_343ae491843ad9b5a345ab60.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_9d4507a21207991f9d41e48e.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_87a5e9f6b56247bbfb4bf534.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_520ed0a24e4cc30d6089f516.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_2590b3610f3d13d125e5f944.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.692383;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_da1f8bd3ffc47125e2ae326b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.869141;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_7d468f96fbef73e41a766eb5.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.113770;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;}
.m6{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,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);}
.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);}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.010806px;}
.ls5{letter-spacing:0.019787px;}
.ls4{letter-spacing:0.019800px;}
.ls9{letter-spacing:0.079860px;}
.lsc{letter-spacing:0.122940px;}
.lsd{letter-spacing:0.122947px;}
.ls3{letter-spacing:0.187842px;}
.ls1{letter-spacing:0.374697px;}
.ls8{letter-spacing:0.375720px;}
.lsa{letter-spacing:0.378600px;}
.lsb{letter-spacing:0.843360px;}
.lse{letter-spacing:1.099020px;}
.ls7{letter-spacing:14.418534px;}
.ls6{letter-spacing:17.300213px;}
.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;}
}
.ws5{word-spacing:-51.468459px;}
.wsb{word-spacing:-46.433501px;}
.wsa{word-spacing:-41.957983px;}
.ws1{word-spacing:-16.560000px;}
.ws7{word-spacing:-16.559993px;}
.wsc{word-spacing:-14.939994px;}
.ws8{word-spacing:-13.499995px;}
.ws6{word-spacing:-10.439996px;}
.ws9{word-spacing:-8.999996px;}
.ws0{word-spacing:0.000000px;}
.ws3{word-spacing:0.012000px;}
.ws2{word-spacing:0.019806px;}
.ws4{word-spacing:0.738000px;}
._0{margin-left:-1.410846px;}
._1{width:1.079784px;}
._6{width:2.127948px;}
._8{width:3.195170px;}
._9{width:4.382231px;}
._1b{width:5.649942px;}
._4{width:6.654007px;}
._5{width:7.688676px;}
._10{width:8.786333px;}
._b{width:9.860420px;}
._c{width:10.880384px;}
._15{width:12.577386px;}
._3{width:14.031553px;}
._d{width:15.067408px;}
._26{width:16.338550px;}
._12{width:17.612487px;}
._14{width:18.664776px;}
._13{width:19.837820px;}
._a{width:20.902231px;}
._16{width:22.019694px;}
._2{width:23.398750px;}
._7{width:25.027194px;}
._f{width:27.008698px;}
._11{width:28.084236px;}
._1c{width:29.163423px;}
._1d{width:30.446112px;}
._19{width:32.081841px;}
._1a{width:33.252868px;}
._21{width:34.999757px;}
._20{width:36.015422px;}
._17{width:37.212705px;}
._18{width:38.227766px;}
._1f{width:39.248801px;}
._1e{width:41.361442px;}
._23{width:43.935164px;}
._24{width:45.129638px;}
._22{width:46.313555px;}
._25{width:47.374986px;}
._29{width:52.705665px;}
._27{width:53.758569px;}
._28{width:55.166375px;}
._2a{width:70.298295px;}
._e{width:892.806000px;}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:35.999986px;}
.fs7{font-size:36.000000px;}
.fsb{font-size:41.759983px;}
.fs4{font-size:42.000000px;}
.fs6{font-size:48.240000px;}
.fs9{font-size:53.999978px;}
.fs8{font-size:54.000000px;}
.fse{font-size:59.759976px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsa{font-size:66.239974px;}
.fs5{font-size:66.240000px;}
.fsc{font-size:71.999971px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:35.925007px;}
.y5{bottom:66.525004px;}
.y4{bottom:97.125005px;}
.y23{bottom:139.264499px;}
.y1a{bottom:196.933500px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y8a{bottom:250.499900px;}
.y3c{bottom:251.579850px;}
.ybe{bottom:256.439897px;}
.y61{bottom:259.499550px;}
.yd3{bottom:259.499896px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.yf0{bottom:260.939896px;}
.y12b{bottom:262.379895px;}
.yc3{bottom:265.439894px;}
.y89{bottom:269.939892px;}
.y10e{bottom:272.099891px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.yab{bottom:274.439890px;}
.ybd{bottom:275.879890px;}
.y60{bottom:278.939550px;}
.yef{bottom:280.379888px;}
.yd2{bottom:283.439887px;}
.yc2{bottom:284.879886px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.y3b{bottom:287.219700px;}
.y12a{bottom:287.219885px;}
.y88{bottom:289.379884px;}
.yaa{bottom:293.879882px;}
.ybc{bottom:295.499882px;}
.y10d{bottom:296.939881px;}
.y5f{bottom:298.379550px;}
.yee{bottom:299.999880px;}
.yd1{bottom:302.879879px;}
.yf5{bottom:304.499878px;}
.y3a{bottom:306.659700px;}
.y129{bottom:306.659877px;}
.y87{bottom:308.999876px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.ya9{bottom:313.499875px;}
.ybb{bottom:314.939874px;}
.y10c{bottom:316.379873px;}
.yed{bottom:319.439872px;}
.yd0{bottom:322.499871px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.yf4{bottom:323.939870px;}
.y39{bottom:326.099700px;}
.y86{bottom:328.439869px;}
.y128{bottom:331.499867px;}
.y101{bottom:332.939867px;}
.yba{bottom:334.379866px;}
.ya8{bottom:337.439865px;}
.yec{bottom:338.879864px;}
.y10b{bottom:341.219864px;}
.ycf{bottom:341.939863px;}
.yf3{bottom:343.379863px;}
.y5e{bottom:344.819550px;}
.y38{bottom:345.719700px;}
.y85{bottom:347.879861px;}
.y11{bottom:348.133500px;}
.y127{bottom:350.939860px;}
.y100{bottom:352.379859px;}
.ya7{bottom:356.879857px;}
.yb8{bottom:358.499857px;}
.y10a{bottom:360.659856px;}
.yce{bottom:361.379855px;}
.yeb{bottom:362.999855px;}
.yb9{bottom:366.059854px;}
.y84{bottom:367.499853px;}
.yff{bottom:371.999851px;}
.y126{bottom:375.599850px;}
.ya6{bottom:376.499849px;}
.yb7{bottom:377.939849px;}
.y109{bottom:380.099848px;}
.ycd{bottom:380.999848px;}
.yea{bottom:382.439847px;}
.y10{bottom:386.785499px;}
.y83{bottom:386.939845px;}
.yfe{bottom:391.439843px;}
.y37{bottom:391.979700px;}
.y125{bottom:395.219842px;}
.ya5{bottom:395.939842px;}
.yb6{bottom:397.379841px;}
.ycc{bottom:400.439840px;}
.ye9{bottom:401.879839px;}
.y108{bottom:404.939838px;}
.y82{bottom:406.379837px;}
.yf{bottom:408.044999px;}
.y5d{bottom:410.879550px;}
.y94{bottom:410.879836px;}
.ya4{bottom:415.379834px;}
.ycb{bottom:419.879832px;}
.ye8{bottom:421.499831px;}
.y107{bottom:424.379830px;}
.yc1{bottom:425.999830px;}
.y5c{bottom:430.499550px;}
.y81{bottom:430.499828px;}
.ya3{bottom:434.999826px;}
.yca{bottom:439.499824px;}
.ye7{bottom:440.939824px;}
.yb5{bottom:443.639823px;}
.y106{bottom:443.999822px;}
.yd9{bottom:445.439822px;}
.y5b{bottom:449.939550px;}
.y80{bottom:449.939820px;}
.ya2{bottom:454.439818px;}
.y36{bottom:458.219700px;}
.yc9{bottom:458.939816px;}
.ye6{bottom:460.379816px;}
.yb4{bottom:461.819815px;}
.y124{bottom:464.159814px;}
.yf2{bottom:464.879814px;}
.y105{bottom:468.659813px;}
.y5a{bottom:469.379550px;}
.y7f{bottom:469.379812px;}
.ya1{bottom:473.879810px;}
.y35{bottom:477.659700px;}
.yc8{bottom:478.379809px;}
.ye5{bottom:479.999808px;}
.y123{bottom:483.599807px;}
.yf1{bottom:484.499806px;}
.ye{bottom:484.864502px;}
.y104{bottom:488.099805px;}
.y59{bottom:488.999550px;}
.y7e{bottom:488.999804px;}
.ya0{bottom:493.499803px;}
.y34{bottom:497.099700px;}
.yc7{bottom:497.999801px;}
.ye4{bottom:499.439800px;}
.yd{bottom:502.864502px;}
.y103{bottom:507.719797px;}
.y58{bottom:508.439550px;}
.y7d{bottom:508.439797px;}
.y93{bottom:512.939795px;}
.y33{bottom:516.719700px;}
.yc6{bottom:517.439793px;}
.ye3{bottom:518.879792px;}
.yc{bottom:520.864502px;}
.y57{bottom:527.879550px;}
.y7c{bottom:527.879789px;}
.y92{bottom:532.379787px;}
.y32{bottom:536.159700px;}
.yc5{bottom:536.879785px;}
.ye2{bottom:538.499785px;}
.yb{bottom:538.864499px;}
.y56{bottom:547.499550px;}
.y7b{bottom:547.499781px;}
.y91{bottom:551.999779px;}
.y122{bottom:552.719779px;}
.y31{bottom:555.599700px;}
.ya{bottom:556.864499px;}
.ye1{bottom:557.939777px;}
.y140{bottom:563.159775px;}
.y55{bottom:566.939550px;}
.yb3{bottom:566.939773px;}
.y7a{bottom:571.439771px;}
.y121{bottom:572.159771px;}
.y30{bottom:575.219700px;}
.ye0{bottom:577.379769px;}
.y13f{bottom:582.599767px;}
.yc4{bottom:583.319767px;}
.y54{bottom:586.379550px;}
.yb2{bottom:586.379765px;}
.y79{bottom:590.879764px;}
.ydf{bottom:596.999761px;}
.y102{bottom:598.259761px;}
.y2f{bottom:599.159700px;}
.y13e{bottom:602.219759px;}
.y53{bottom:605.999550px;}
.yb1{bottom:605.999758px;}
.y78{bottom:610.499756px;}
.yde{bottom:616.439753px;}
.y9f{bottom:617.879753px;}
.y2e{bottom:618.599700px;}
.y13d{bottom:621.659751px;}
.y52{bottom:625.439550px;}
.yb0{bottom:625.439750px;}
.y77{bottom:629.939748px;}
.yfd{bottom:637.319745px;}
.y2d{bottom:638.219700px;}
.ydd{bottom:640.379744px;}
.y120{bottom:641.099744px;}
.y51{bottom:644.879550px;}
.yaf{bottom:644.879742px;}
.y9{bottom:645.510000px;}
.y76{bottom:649.379740px;}
.y2c{bottom:657.659700px;}
.y11f{bottom:660.719736px;}
.y50{bottom:664.499550px;}
.yae{bottom:664.499734px;}
.y8{bottom:666.771000px;}
.y90{bottom:668.999732px;}
.y75{bottom:673.499731px;}
.y2b{bottom:677.099700px;}
.y13c{bottom:680.159728px;}
.y4f{bottom:683.939550px;}
.y9e{bottom:683.939726px;}
.y11d{bottom:685.379726px;}
.yc0{bottom:688.439725px;}
.y11e{bottom:691.319723px;}
.y74{bottom:692.939723px;}
.y2a{bottom:696.719700px;}
.y13b{bottom:699.599720px;}
.y4e{bottom:703.379550px;}
.y9d{bottom:703.379719px;}
.y11c{bottom:704.999718px;}
.ybf{bottom:707.879717px;}
.y73{bottom:712.379715px;}
.y13a{bottom:719.219712px;}
.y9c{bottom:722.999711px;}
.y11b{bottom:724.439710px;}
.y7{bottom:726.298500px;}
.y4d{bottom:727.499550px;}
.yad{bottom:727.499709px;}
.y72{bottom:731.999707px;}
.y139{bottom:738.659705px;}
.y9b{bottom:742.439703px;}
.y29{bottom:742.979700px;}
.y4c{bottom:746.939550px;}
.yac{bottom:746.939701px;}
.y11a{bottom:749.099700px;}
.y71{bottom:751.439699px;}
.y3{bottom:752.599495px;}
.y138{bottom:758.099697px;}
.yfc{bottom:761.879695px;}
.y4b{bottom:766.379550px;}
.y9a{bottom:766.379693px;}
.y119{bottom:768.719693px;}
.y70{bottom:770.879692px;}
.y137{bottom:777.719689px;}
.yfb{bottom:781.499687px;}
.y4a{bottom:785.999550px;}
.y99{bottom:785.999686px;}
.y118{bottom:788.159685px;}
.y6f{bottom:790.499684px;}
.y136{bottom:797.159681px;}
.yfa{bottom:800.939680px;}
.y49{bottom:805.439550px;}
.y98{bottom:805.439678px;}
.y28{bottom:809.219700px;}
.y6e{bottom:809.939676px;}
.y117{bottom:812.999675px;}
.y135{bottom:816.599673px;}
.yf9{bottom:820.379672px;}
.y48{bottom:824.879550px;}
.y97{bottom:824.879670px;}
.y27{bottom:828.659700px;}
.y6d{bottom:829.379668px;}
.y116{bottom:832.439667px;}
.y134{bottom:836.219666px;}
.yf8{bottom:839.999664px;}
.y47{bottom:844.499550px;}
.y96{bottom:844.499662px;}
.y26{bottom:848.099700px;}
.y6c{bottom:848.999660px;}
.ydc{bottom:853.499659px;}
.y133{bottom:855.659658px;}
.y115{bottom:857.099657px;}
.y46{bottom:863.939550px;}
.y95{bottom:863.939654px;}
.y6b{bottom:868.439653px;}
.ydb{bottom:872.939651px;}
.y114{bottom:876.719649px;}
.y2{bottom:879.369000px;}
.yd8{bottom:883.379647px;}
.y45{bottom:887.879550px;}
.y6a{bottom:887.879645px;}
.y132{bottom:889.859644px;}
.yda{bottom:892.379643px;}
.y113{bottom:901.379639px;}
.yd7{bottom:902.999639px;}
.y44{bottom:907.499550px;}
.y8f{bottom:907.499637px;}
.y131{bottom:908.219637px;}
.y69{bottom:911.999635px;}
.y112{bottom:920.999632px;}
.yd6{bottom:922.439631px;}
.y25{bottom:923.879700px;}
.y43{bottom:926.939550px;}
.y8e{bottom:926.939629px;}
.y130{bottom:927.659629px;}
.y68{bottom:931.439627px;}
.y111{bottom:940.439624px;}
.yd5{bottom:941.879623px;}
.y42{bottom:946.379550px;}
.y8d{bottom:946.379621px;}
.y12f{bottom:947.099621px;}
.y67{bottom:950.879620px;}
.yf7{bottom:961.499615px;}
.y110{bottom:965.099614px;}
.y41{bottom:965.999550px;}
.y8c{bottom:965.999614px;}
.y12e{bottom:966.719613px;}
.y1{bottom:966.726000px;}
.y66{bottom:970.499612px;}
.yf6{bottom:980.939608px;}
.y10f{bottom:984.719606px;}
.y8b{bottom:985.439606px;}
.y12d{bottom:986.159606px;}
.y40{bottom:989.939550px;}
.y65{bottom:989.939604px;}
.yd4{bottom:1004.879598px;}
.y12c{bottom:1005.419598px;}
.y3f{bottom:1009.379550px;}
.y64{bottom:1009.379596px;}
.y3e{bottom:1028.999550px;}
.y63{bottom:1028.999588px;}
.y24{bottom:1054.380000px;}
.y3d{bottom:1112.519550px;}
.y62{bottom:1112.519555px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.h17{height:35.332017px;}
.h10{height:35.332031px;}
.h15{height:40.985140px;}
.h7{height:45.960000px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.h12{height:52.998026px;}
.h11{height:52.998047px;}
.h2{height:55.152000px;}
.h1a{height:58.621969px;}
.h18{height:60.226851px;}
.he{height:64.978594px;}
.h13{height:65.010911px;}
.hf{height:65.010937px;}
.h14{height:66.757473px;}
.hd{height:66.757500px;}
.h16{height:70.664034px;}
.ha{height:70.664062px;}
.h19{height:72.562471px;}
.hc{height:72.562500px;}
.h5{height:78.132000px;}
.hb{height:81.736875px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w3{width:892.500000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xa{left:178.560000px;}
.x10{left:192.059923px;}
.x7{left:198.359850px;}
.xc{left:199.799850px;}
.x8{left:201.419513px;}
.x4{left:203.484001px;}
.x12{left:205.559918px;}
.xd{left:210.961378px;}
.xb{left:221.039997px;}
.x13{left:228.959908px;}
.x15{left:245.519358px;}
.x14{left:255.059448px;}
.x16{left:331.559413px;}
.x6{left:345.780150px;}
.x9{left:362.697188px;}
.x11{left:403.199839px;}
.x3{left:454.959000px;}
.x5{left:518.781000px;}
.x17{left:560.879776px;}
.xe{left:662.039735px;}
.xf{left:669.059732px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.009606pt;}
.ls5{letter-spacing:0.017589pt;}
.ls4{letter-spacing:0.017600pt;}
.ls9{letter-spacing:0.070987pt;}
.lsc{letter-spacing:0.109280pt;}
.lsd{letter-spacing:0.109286pt;}
.ls3{letter-spacing:0.166971pt;}
.ls1{letter-spacing:0.333064pt;}
.ls8{letter-spacing:0.333973pt;}
.lsa{letter-spacing:0.336533pt;}
.lsb{letter-spacing:0.749653pt;}
.lse{letter-spacing:0.976906pt;}
.ls7{letter-spacing:12.816475pt;}
.ls6{letter-spacing:15.377967pt;}
.ws5{word-spacing:-45.749742pt;}
.wsb{word-spacing:-41.274223pt;}
.wsa{word-spacing:-37.295985pt;}
.ws1{word-spacing:-14.720000pt;}
.ws7{word-spacing:-14.719994pt;}
.wsc{word-spacing:-13.279995pt;}
.ws8{word-spacing:-11.999995pt;}
.ws6{word-spacing:-9.279996pt;}
.ws9{word-spacing:-7.999997pt;}
.ws0{word-spacing:0.000000pt;}
.ws3{word-spacing:0.010667pt;}
.ws2{word-spacing:0.017605pt;}
.ws4{word-spacing:0.656000pt;}
._0{margin-left:-1.254085pt;}
._1{width:0.959808pt;}
._6{width:1.891510pt;}
._8{width:2.840151pt;}
._9{width:3.895316pt;}
._1b{width:5.022171pt;}
._4{width:5.914673pt;}
._5{width:6.834378pt;}
._10{width:7.810074pt;}
._b{width:8.764818pt;}
._c{width:9.671452pt;}
._15{width:11.179899pt;}
._3{width:12.472492pt;}
._d{width:13.393252pt;}
._26{width:14.523155pt;}
._12{width:15.655544pt;}
._14{width:16.590912pt;}
._13{width:17.633618pt;}
._a{width:18.579761pt;}
._16{width:19.573061pt;}
._2{width:20.798889pt;}
._7{width:22.246395pt;}
._f{width:24.007731pt;}
._11{width:24.963766pt;}
._1c{width:25.923043pt;}
._1d{width:27.063211pt;}
._19{width:28.517192pt;}
._1a{width:29.558105pt;}
._21{width:31.110895pt;}
._20{width:32.013708pt;}
._17{width:33.077960pt;}
._18{width:33.980237pt;}
._1f{width:34.887824pt;}
._1e{width:36.765727pt;}
._23{width:39.053479pt;}
._24{width:40.115234pt;}
._22{width:41.167604pt;}
._25{width:42.111099pt;}
._29{width:46.849480pt;}
._27{width:47.785395pt;}
._28{width:49.036778pt;}
._2a{width:62.487373pt;}
._e{width:793.605333pt;}
.fsd{font-size:31.999987pt;}
.fs7{font-size:32.000000pt;}
.fsb{font-size:37.119985pt;}
.fs4{font-size:37.333333pt;}
.fs6{font-size:42.880000pt;}
.fs9{font-size:47.999981pt;}
.fs8{font-size:48.000000pt;}
.fse{font-size:53.119979pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsa{font-size:58.879976pt;}
.fs5{font-size:58.880000pt;}
.fsc{font-size:63.999974pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:31.933340pt;}
.y5{bottom:59.133337pt;}
.y4{bottom:86.333337pt;}
.y23{bottom:123.790666pt;}
.y1a{bottom:175.052000pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y8a{bottom:222.666578pt;}
.y3c{bottom:223.626533pt;}
.ybe{bottom:227.946575pt;}
.y61{bottom:230.666267pt;}
.yd3{bottom:230.666574pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.yf0{bottom:231.946574pt;}
.y12b{bottom:233.226573pt;}
.yc3{bottom:235.946572pt;}
.y89{bottom:239.946571pt;}
.y10e{bottom:241.866570pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.yab{bottom:243.946569pt;}
.ybd{bottom:245.226569pt;}
.y60{bottom:247.946267pt;}
.yef{bottom:249.226567pt;}
.yd2{bottom:251.946566pt;}
.yc2{bottom:253.226565pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.y3b{bottom:255.306400pt;}
.y12a{bottom:255.306565pt;}
.y88{bottom:257.226564pt;}
.yaa{bottom:261.226562pt;}
.ybc{bottom:262.666562pt;}
.y10d{bottom:263.946561pt;}
.y5f{bottom:265.226267pt;}
.yee{bottom:266.666560pt;}
.yd1{bottom:269.226559pt;}
.yf5{bottom:270.666558pt;}
.y3a{bottom:272.586400pt;}
.y129{bottom:272.586558pt;}
.y87{bottom:274.666557pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.ya9{bottom:278.666555pt;}
.ybb{bottom:279.946555pt;}
.y10c{bottom:281.226554pt;}
.yed{bottom:283.946553pt;}
.yd0{bottom:286.666552pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.yf4{bottom:287.946551pt;}
.y39{bottom:289.866400pt;}
.y86{bottom:291.946550pt;}
.y128{bottom:294.666549pt;}
.y101{bottom:295.946548pt;}
.yba{bottom:297.226548pt;}
.ya8{bottom:299.946547pt;}
.yec{bottom:301.226546pt;}
.y10b{bottom:303.306545pt;}
.ycf{bottom:303.946545pt;}
.yf3{bottom:305.226545pt;}
.y5e{bottom:306.506267pt;}
.y38{bottom:307.306400pt;}
.y85{bottom:309.226543pt;}
.y11{bottom:309.452000pt;}
.y127{bottom:311.946542pt;}
.y100{bottom:313.226541pt;}
.ya7{bottom:317.226540pt;}
.yb8{bottom:318.666539pt;}
.y10a{bottom:320.586538pt;}
.yce{bottom:321.226538pt;}
.yeb{bottom:322.666538pt;}
.yb9{bottom:325.386537pt;}
.y84{bottom:326.666536pt;}
.yff{bottom:330.666534pt;}
.y126{bottom:333.866533pt;}
.ya6{bottom:334.666533pt;}
.yb7{bottom:335.946532pt;}
.y109{bottom:337.866532pt;}
.ycd{bottom:338.666531pt;}
.yea{bottom:339.946531pt;}
.y10{bottom:343.809333pt;}
.y83{bottom:343.946529pt;}
.yfe{bottom:347.946527pt;}
.y37{bottom:348.426400pt;}
.y125{bottom:351.306526pt;}
.ya5{bottom:351.946526pt;}
.yb6{bottom:353.226525pt;}
.ycc{bottom:355.946524pt;}
.ye9{bottom:357.226524pt;}
.y108{bottom:359.946523pt;}
.y82{bottom:361.226522pt;}
.yf{bottom:362.706666pt;}
.y5d{bottom:365.226267pt;}
.y94{bottom:365.226521pt;}
.ya4{bottom:369.226519pt;}
.ycb{bottom:373.226517pt;}
.ye8{bottom:374.666517pt;}
.y107{bottom:377.226516pt;}
.yc1{bottom:378.666515pt;}
.y5c{bottom:382.666267pt;}
.y81{bottom:382.666514pt;}
.ya3{bottom:386.666512pt;}
.yca{bottom:390.666510pt;}
.ye7{bottom:391.946510pt;}
.yb5{bottom:394.346509pt;}
.y106{bottom:394.666509pt;}
.yd9{bottom:395.946508pt;}
.y5b{bottom:399.946267pt;}
.y80{bottom:399.946507pt;}
.ya2{bottom:403.946505pt;}
.y36{bottom:407.306400pt;}
.yc9{bottom:407.946503pt;}
.ye6{bottom:409.226503pt;}
.yb4{bottom:410.506502pt;}
.y124{bottom:412.586502pt;}
.yf2{bottom:413.226501pt;}
.y105{bottom:416.586500pt;}
.y5a{bottom:417.226267pt;}
.y7f{bottom:417.226500pt;}
.ya1{bottom:421.226498pt;}
.y35{bottom:424.586400pt;}
.yc8{bottom:425.226497pt;}
.ye5{bottom:426.666496pt;}
.y123{bottom:429.866495pt;}
.yf1{bottom:430.666494pt;}
.ye{bottom:430.990669pt;}
.y104{bottom:433.866493pt;}
.y59{bottom:434.666267pt;}
.y7e{bottom:434.666493pt;}
.ya0{bottom:438.666491pt;}
.y34{bottom:441.866400pt;}
.yc7{bottom:442.666490pt;}
.ye4{bottom:443.946489pt;}
.yd{bottom:446.990669pt;}
.y103{bottom:451.306486pt;}
.y58{bottom:451.946267pt;}
.y7d{bottom:451.946486pt;}
.y93{bottom:455.946484pt;}
.y33{bottom:459.306400pt;}
.yc6{bottom:459.946483pt;}
.ye3{bottom:461.226482pt;}
.yc{bottom:462.990669pt;}
.y57{bottom:469.226267pt;}
.y7c{bottom:469.226479pt;}
.y92{bottom:473.226477pt;}
.y32{bottom:476.586400pt;}
.yc5{bottom:477.226476pt;}
.ye2{bottom:478.666475pt;}
.yb{bottom:478.990666pt;}
.y56{bottom:486.666267pt;}
.y7b{bottom:486.666472pt;}
.y91{bottom:490.666470pt;}
.y122{bottom:491.306470pt;}
.y31{bottom:493.866400pt;}
.ya{bottom:494.990666pt;}
.ye1{bottom:495.946468pt;}
.y140{bottom:500.586466pt;}
.y55{bottom:503.946267pt;}
.yb3{bottom:503.946465pt;}
.y7a{bottom:507.946463pt;}
.y121{bottom:508.586463pt;}
.y30{bottom:511.306400pt;}
.ye0{bottom:513.226461pt;}
.y13f{bottom:517.866460pt;}
.yc4{bottom:518.506459pt;}
.y54{bottom:521.226267pt;}
.yb2{bottom:521.226458pt;}
.y79{bottom:525.226457pt;}
.ydf{bottom:530.666454pt;}
.y102{bottom:531.786454pt;}
.y2f{bottom:532.586400pt;}
.y13e{bottom:535.306453pt;}
.y53{bottom:538.666267pt;}
.yb1{bottom:538.666451pt;}
.y78{bottom:542.666450pt;}
.yde{bottom:547.946447pt;}
.y9f{bottom:549.226447pt;}
.y2e{bottom:549.866400pt;}
.y13d{bottom:552.586446pt;}
.y52{bottom:555.946267pt;}
.yb0{bottom:555.946444pt;}
.y77{bottom:559.946443pt;}
.yfd{bottom:566.506440pt;}
.y2d{bottom:567.306400pt;}
.ydd{bottom:569.226439pt;}
.y120{bottom:569.866439pt;}
.y51{bottom:573.226267pt;}
.yaf{bottom:573.226437pt;}
.y9{bottom:573.786667pt;}
.y76{bottom:577.226436pt;}
.y2c{bottom:584.586400pt;}
.y11f{bottom:587.306432pt;}
.y50{bottom:590.666267pt;}
.yae{bottom:590.666430pt;}
.y8{bottom:592.685334pt;}
.y90{bottom:594.666429pt;}
.y75{bottom:598.666427pt;}
.y2b{bottom:601.866400pt;}
.y13c{bottom:604.586425pt;}
.y4f{bottom:607.946267pt;}
.y9e{bottom:607.946423pt;}
.y11d{bottom:609.226423pt;}
.yc0{bottom:611.946422pt;}
.y11e{bottom:614.506421pt;}
.y74{bottom:615.946420pt;}
.y2a{bottom:619.306400pt;}
.y13b{bottom:621.866418pt;}
.y4e{bottom:625.226267pt;}
.y9d{bottom:625.226417pt;}
.y11c{bottom:626.666416pt;}
.ybf{bottom:629.226415pt;}
.y73{bottom:633.226413pt;}
.y13a{bottom:639.306411pt;}
.y9c{bottom:642.666410pt;}
.y11b{bottom:643.946409pt;}
.y7{bottom:645.598667pt;}
.y4d{bottom:646.666267pt;}
.yad{bottom:646.666408pt;}
.y72{bottom:650.666406pt;}
.y139{bottom:656.586404pt;}
.y9b{bottom:659.946403pt;}
.y29{bottom:660.426400pt;}
.y4c{bottom:663.946267pt;}
.yac{bottom:663.946401pt;}
.y11a{bottom:665.866400pt;}
.y71{bottom:667.946399pt;}
.y3{bottom:668.977329pt;}
.y138{bottom:673.866397pt;}
.yfc{bottom:677.226396pt;}
.y4b{bottom:681.226267pt;}
.y9a{bottom:681.226394pt;}
.y119{bottom:683.306393pt;}
.y70{bottom:685.226393pt;}
.y137{bottom:691.306390pt;}
.yfb{bottom:694.666389pt;}
.y4a{bottom:698.666267pt;}
.y99{bottom:698.666387pt;}
.y118{bottom:700.586386pt;}
.y6f{bottom:702.666386pt;}
.y136{bottom:708.586383pt;}
.yfa{bottom:711.946382pt;}
.y49{bottom:715.946267pt;}
.y98{bottom:715.946380pt;}
.y28{bottom:719.306400pt;}
.y6e{bottom:719.946379pt;}
.y117{bottom:722.666378pt;}
.y135{bottom:725.866376pt;}
.yf9{bottom:729.226375pt;}
.y48{bottom:733.226267pt;}
.y97{bottom:733.226373pt;}
.y27{bottom:736.586400pt;}
.y6d{bottom:737.226372pt;}
.y116{bottom:739.946371pt;}
.y134{bottom:743.306369pt;}
.yf8{bottom:746.666368pt;}
.y47{bottom:750.666267pt;}
.y96{bottom:750.666366pt;}
.y26{bottom:753.866400pt;}
.y6c{bottom:754.666365pt;}
.ydc{bottom:758.666363pt;}
.y133{bottom:760.586362pt;}
.y115{bottom:761.866362pt;}
.y46{bottom:767.946267pt;}
.y95{bottom:767.946359pt;}
.y6b{bottom:771.946358pt;}
.ydb{bottom:775.946356pt;}
.y114{bottom:779.306355pt;}
.y2{bottom:781.661334pt;}
.yd8{bottom:785.226353pt;}
.y45{bottom:789.226267pt;}
.y6a{bottom:789.226351pt;}
.y132{bottom:790.986350pt;}
.yda{bottom:793.226349pt;}
.y113{bottom:801.226346pt;}
.yd7{bottom:802.666346pt;}
.y44{bottom:806.666267pt;}
.y8f{bottom:806.666344pt;}
.y131{bottom:807.306344pt;}
.y69{bottom:810.666342pt;}
.y112{bottom:818.666339pt;}
.yd6{bottom:819.946339pt;}
.y25{bottom:821.226400pt;}
.y43{bottom:823.946267pt;}
.y8e{bottom:823.946337pt;}
.y130{bottom:824.586337pt;}
.y68{bottom:827.946335pt;}
.y111{bottom:835.946332pt;}
.yd5{bottom:837.226332pt;}
.y42{bottom:841.226267pt;}
.y8d{bottom:841.226330pt;}
.y12f{bottom:841.866330pt;}
.y67{bottom:845.226329pt;}
.yf7{bottom:854.666325pt;}
.y110{bottom:857.866324pt;}
.y41{bottom:858.666267pt;}
.y8c{bottom:858.666323pt;}
.y12e{bottom:859.306323pt;}
.y1{bottom:859.312000pt;}
.y66{bottom:862.666322pt;}
.yf6{bottom:871.946318pt;}
.y10f{bottom:875.306317pt;}
.y8b{bottom:875.946316pt;}
.y12d{bottom:876.586316pt;}
.y40{bottom:879.946267pt;}
.y65{bottom:879.946315pt;}
.yd4{bottom:893.226309pt;}
.y12c{bottom:893.706309pt;}
.y3f{bottom:897.226267pt;}
.y64{bottom:897.226308pt;}
.y3e{bottom:914.666267pt;}
.y63{bottom:914.666301pt;}
.y24{bottom:937.226667pt;}
.y3d{bottom:988.906267pt;}
.y62{bottom:988.906271pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.h17{height:31.406237pt;}
.h10{height:31.406250pt;}
.h15{height:36.431235pt;}
.h7{height:40.853333pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.h12{height:47.109356pt;}
.h11{height:47.109375pt;}
.h2{height:49.024000pt;}
.h1a{height:52.108417pt;}
.h18{height:53.534979pt;}
.he{height:57.758750pt;}
.h13{height:57.787477pt;}
.hf{height:57.787500pt;}
.h14{height:59.339976pt;}
.hd{height:59.340000pt;}
.h16{height:62.812475pt;}
.ha{height:62.812500pt;}
.h19{height:64.499974pt;}
.hc{height:64.500000pt;}
.h5{height:69.450667pt;}
.hb{height:72.655000pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w3{width:793.333333pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xa{left:158.720000pt;}
.x10{left:170.719932pt;}
.x7{left:176.319867pt;}
.xc{left:177.599867pt;}
.x8{left:179.039567pt;}
.x4{left:180.874667pt;}
.x12{left:182.719927pt;}
.xd{left:187.521225pt;}
.xb{left:196.479997pt;}
.x13{left:203.519919pt;}
.x15{left:218.239429pt;}
.x14{left:226.719509pt;}
.x16{left:294.719478pt;}
.x6{left:307.360133pt;}
.x9{left:322.397501pt;}
.x11{left:358.399857pt;}
.x3{left:404.408000pt;}
.x5{left:461.138667pt;}
.x17{left:498.559801pt;}
.xe{left:588.479765pt;}
.xf{left:594.719762pt;}
}




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