
    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_1cacae043117e3d8ea1a9828.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_2ed7abe1d7dddf69636d2893.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_00a73da8c1cca38ecb3341e4.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_2107d550c69643ca3b41907f.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f41ff3ee9e060eeab851fad3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_e5bfd823c854384209d9f311.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.917969;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_f415e1eeb1a6ae821e85f82b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.916504;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_a12926c207225281a226b5d2.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_c5d11cae55f882c8aa4e7975.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_487f68df1f2e30f6b3e5112e.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_1a7f572a3ef129cf613b9665.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.002930;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_d33e223b5f20d3bd27f22223.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;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_e25d326b69615a9dc685acdc.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;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.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);}
.m4{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);}
.m0{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);}
.m2{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v1{vertical-align:-82.799967px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:35.999986px;}
.v2{vertical-align:49.679980px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.021253px;}
.ls5{letter-spacing:25.945910px;}
.ls7{letter-spacing:34.015846px;}
.ls8{letter-spacing:64.273774px;}
.ls6{letter-spacing:90.063564px;}
.ls0{letter-spacing:194.525322px;}
.ls1{letter-spacing:1234.961506px;}
.ls3{letter-spacing:1950.923220px;}
.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;}
}
.ws0{word-spacing:-17.999993px;}
.ws7{word-spacing:-16.613273px;}
.ws4{word-spacing:-16.271993px;}
.ws2{word-spacing:-12.203995px;}
.ws1{word-spacing:0.000000px;}
.ws3{word-spacing:33.425864px;}
.ws6{word-spacing:42.065702px;}
.ws5{word-spacing:93.888173px;}
._1d{margin-left:-444.581822px;}
._11{margin-left:-5.131787px;}
._3{margin-left:-4.118956px;}
._1{margin-left:-2.681192px;}
._0{margin-left:-1.422032px;}
._2{width:1.168097px;}
._e{width:2.999849px;}
._4{width:4.085147px;}
._5{width:5.299257px;}
._6{width:6.441300px;}
._13{width:7.957714px;}
._14{width:8.966473px;}
._18{width:10.051091px;}
._10{width:11.169343px;}
._d{width:12.279045px;}
._a{width:13.330278px;}
._b{width:14.361031px;}
._f{width:15.832717px;}
._12{width:16.985099px;}
._9{width:19.315667px;}
._7{width:20.470678px;}
._8{width:22.073437px;}
._c{width:23.280329px;}
._21{width:24.310157px;}
._15{width:25.867790px;}
._1c{width:27.284544px;}
._16{width:29.768810px;}
._17{width:31.173534px;}
._22{width:37.966373px;}
._19{width:43.410918px;}
._1a{width:44.584908px;}
._1b{width:46.228147px;}
._1e{width:107.153746px;}
._20{width:161.765935px;}
._1f{width:182.825927px;}
._23{width:1530.911388px;}
.fc2{color:transparent;}
.fc1{color:rgb(83,129,53);}
.fc4{color:rgb(89,89,89);}
.fc3{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:53.999978px;}
.fs1{font-size:59.759976px;}
.fs5{font-size:66.239974px;}
.fs0{font-size:71.999971px;}
.fs3{font-size:84.239966px;}
.fs2{font-size:95.759962px;}
.y0{bottom:0.000000px;}
.y10{bottom:1.978931px;}
.y12{bottom:4.678947px;}
.yb{bottom:57.720277px;}
.ya{bottom:77.340269px;}
.y3d{bottom:122.699951px;}
.y10b{bottom:127.199949px;}
.y7f{bottom:129.899948px;}
.yd0{bottom:131.699947px;}
.y11f{bottom:133.140247px;}
.y6b{bottom:137.999945px;}
.y3c{bottom:143.399943px;}
.ycf{bottom:147.899941px;}
.y7e{bottom:150.599940px;}
.y11e{bottom:154.379938px;}
.y6a{bottom:158.699937px;}
.yde{bottom:163.559935px;}
.y3b{bottom:164.099934px;}
.y10a{bottom:168.599933px;}
.y61{bottom:170.399932px;}
.ye6{bottom:170.939932px;}
.y7d{bottom:171.299931px;}
.y69{bottom:179.399928px;}
.y11d{bottom:183.539927px;}
.y3a{bottom:184.799926px;}
.ydd{bottom:188.759924px;}
.y109{bottom:189.299924px;}
.y60{bottom:191.099924px;}
.y7c{bottom:191.999923px;}
.y68{bottom:200.099920px;}
.y39{bottom:205.499918px;}
.ye5{bottom:209.999916px;}
.y11c{bottom:212.519915px;}
.y7b{bottom:212.699915px;}
.y67{bottom:220.799912px;}
.y7a{bottom:228.899908px;}
.ye4{bottom:230.699908px;}
.y5f{bottom:232.499907px;}
.y38{bottom:235.199906px;}
.y66{bottom:241.499903px;}
.ye3{bottom:251.399899px;}
.y5e{bottom:253.199899px;}
.y85{bottom:259.859896px;}
.y65{bottom:262.199895px;}
.y37{bottom:264.539894px;}
.y80{bottom:267.419893px;}
.ye2{bottom:272.099891px;}
.y5d{bottom:273.899890px;}
.y84{bottom:276.419889px;}
.yd9{bottom:279.119888px;}
.yd8{bottom:282.539887px;}
.y64{bottom:282.899887px;}
.ye1{bottom:292.799883px;}
.y5c{bottom:294.599882px;}
.y36{bottom:303.599879px;}
.y87{bottom:312.779875px;}
.ye0{bottom:313.499875px;}
.y5b{bottom:315.299874px;}
.y81{bottom:320.159872px;}
.y35{bottom:324.299870px;}
.y86{bottom:329.159868px;}
.y96{bottom:334.199866px;}
.y5a{bottom:335.999866px;}
.y34{bottom:344.999862px;}
.y95{bottom:354.899858px;}
.y59{bottom:356.699857px;}
.y8a{bottom:357.419857px;}
.yda{bottom:357.959857px;}
.y33{bottom:365.699854px;}
.y82{bottom:373.079851px;}
.y89{bottom:373.799850px;}
.y94{bottom:375.599850px;}
.y58{bottom:377.399849px;}
.y32{bottom:386.399845px;}
.y88{bottom:390.359844px;}
.yb7{bottom:393.599843px;}
.y93{bottom:396.299841px;}
.y57{bottom:398.099841px;}
.y31{bottom:407.099837px;}
.y8d{bottom:410.339836px;}
.yb6{bottom:414.299834px;}
.y92{bottom:416.999833px;}
.y56{bottom:418.799832px;}
.ydc{bottom:421.679831px;}
.y83{bottom:425.999830px;}
.y8c{bottom:426.719829px;}
.y30{bottom:427.799829px;}
.ydf{bottom:433.199827px;}
.yb5{bottom:434.999826px;}
.y91{bottom:437.699825px;}
.y55{bottom:439.499824px;}
.y8b{bottom:443.279823px;}
.ydb{bottom:443.639823px;}
.y2f{bottom:448.499821px;}
.y90{bottom:453.899818px;}
.yb4{bottom:455.699818px;}
.ycb{bottom:458.399817px;}
.ye7{bottom:460.019816px;}
.y54{bottom:460.199816px;}
.yee{bottom:460.739816px;}
.y2e{bottom:469.199812px;}
.y9e{bottom:476.399809px;}
.yca{bottom:479.099808px;}
.y53{bottom:480.899808px;}
.y97{bottom:483.959806px;}
.ye8{bottom:489.719804px;}
.y2d{bottom:489.899804px;}
.yef{bottom:490.439804px;}
.y9d{bottom:492.959803px;}
.yb3{bottom:497.099801px;}
.yc9{bottom:499.799800px;}
.y52{bottom:501.599799px;}
.y8f{bottom:505.919798px;}
.y2c{bottom:510.599796px;}
.ya0{bottom:512.579795px;}
.yb2{bottom:517.799793px;}
.ye9{bottom:519.419792px;}
.y98{bottom:520.139792px;}
.yc8{bottom:520.499792px;}
.y51{bottom:522.299791px;}
.y8e{bottom:526.079790px;}
.y9f{bottom:529.139788px;}
.y2b{bottom:531.299787px;}
.yb1{bottom:538.499785px;}
.yc7{bottom:541.199784px;}
.y50{bottom:542.999783px;}
.ya2{bottom:548.759780px;}
.yea{bottom:549.119780px;}
.yf0{bottom:549.839780px;}
.y2a{bottom:551.999779px;}
.y99{bottom:556.319777px;}
.yb0{bottom:559.199776px;}
.yc6{bottom:561.899775px;}
.y4f{bottom:563.699775px;}
.ya1{bottom:565.319774px;}
.y29{bottom:572.699771px;}
.y79{bottom:575.399770px;}
.yeb{bottom:578.819768px;}
.yf1{bottom:579.539768px;}
.yaf{bottom:579.899768px;}
.yc5{bottom:582.599767px;}
.y4e{bottom:584.399766px;}
.ya4{bottom:584.939766px;}
.y9a{bottom:592.499763px;}
.y28{bottom:593.399763px;}
.y78{bottom:596.099762px;}
.yae{bottom:600.599760px;}
.ya3{bottom:601.499759px;}
.yc4{bottom:602.939759px;}
.yf7{bottom:603.299759px;}
.y4d{bottom:605.099758px;}
.yec{bottom:608.519757px;}
.yf2{bottom:609.239756px;}
.y27{bottom:614.099754px;}
.y77{bottom:616.799753px;}
.ya6{bottom:621.119752px;}
.yad{bottom:621.299751px;}
.yf6{bottom:623.639751px;}
.y4c{bottom:625.439750px;}
.y9b{bottom:628.679749px;}
.y26{bottom:634.799746px;}
.y76{bottom:637.499745px;}
.ya5{bottom:637.679745px;}
.yed{bottom:638.219745px;}
.yf3{bottom:638.939744px;}
.yac{bottom:641.639743px;}
.ybe{bottom:641.999743px;}
.y4b{bottom:646.139742px;}
.y25{bottom:655.499738px;}
.ya8{bottom:657.299737px;}
.y75{bottom:658.199737px;}
.y9c{bottom:664.859734px;}
.y4a{bottom:666.839733px;}
.ya7{bottom:673.859730px;}
.ybd{bottom:676.019730px;}
.y24{bottom:676.199730px;}
.y74{bottom:678.899728px;}
.y10c{bottom:683.759726px;}
.y113{bottom:684.659726px;}
.y49{bottom:687.899725px;}
.yfd{bottom:689.879724px;}
.y23{bottom:696.899721px;}
.yf8{bottom:697.259721px;}
.yc3{bottom:699.059720px;}
.y73{bottom:699.599720px;}
.yfc{bottom:706.259717px;}
.yf5{bottom:706.979717px;}
.y48{bottom:708.599717px;}
.yab{bottom:710.759716px;}
.y10d{bottom:711.119716px;}
.y114{bottom:712.019715px;}
.y22{bottom:717.599713px;}
.y72{bottom:720.299712px;}
.yf4{bottom:728.939708px;}
.y47{bottom:729.299708px;}
.yaa{bottom:730.919708px;}
.y21{bottom:737.939705px;}
.y63{bottom:738.299705px;}
.y10e{bottom:738.479705px;}
.y115{bottom:739.199704px;}
.y71{bottom:740.999704px;}
.yd2{bottom:742.259703px;}
.yff{bottom:744.059702px;}
.y46{bottom:749.999700px;}
.ya9{bottom:751.079700px;}
.yf9{bottom:751.619699px;}
.y20{bottom:758.639697px;}
.y62{bottom:758.999696px;}
.y106{bottom:760.259696px;}
.yfe{bottom:760.619696px;}
.y70{bottom:761.699695px;}
.y10f{bottom:765.839694px;}
.y116{bottom:766.559693px;}
.yd1{bottom:766.919693px;}
.yb8{bottom:770.339692px;}
.y45{bottom:770.699692px;}
.yc0{bottom:779.339688px;}
.y1f{bottom:779.699688px;}
.y6f{bottom:782.399687px;}
.y102{bottom:790.139684px;}
.y44{bottom:791.399683px;}
.y110{bottom:793.199683px;}
.y117{bottom:793.919682px;}
.ycc{bottom:799.499680px;}
.y11b{bottom:800.039680px;}
.y1e{bottom:800.399680px;}
.y6e{bottom:803.099679px;}
.yfa{bottom:805.799678px;}
.y101{bottom:806.519677px;}
.y105{bottom:808.499677px;}
.y43{bottom:812.099675px;}
.y111{bottom:820.559672px;}
.y11a{bottom:820.739672px;}
.ybf{bottom:820.919672px;}
.y1d{bottom:821.099672px;}
.y118{bottom:821.279671px;}
.y100{bottom:823.079671px;}
.y6d{bottom:823.799670px;}
.yc1{bottom:829.919668px;}
.ycd{bottom:832.259667px;}
.y42{bottom:832.799667px;}
.yd3{bottom:837.839665px;}
.yb9{bottom:839.999664px;}
.y107{bottom:841.259663px;}
.y1c{bottom:841.799663px;}
.y6c{bottom:844.139662px;}
.y112{bottom:847.919661px;}
.y119{bottom:848.639661px;}
.y104{bottom:852.599659px;}
.yce{bottom:855.839658px;}
.y108{bottom:856.919657px;}
.yfb{bottom:860.159656px;}
.y1b{bottom:862.499655px;}
.y103{bottom:869.159652px;}
.yc2{bottom:877.259649px;}
.y41{bottom:883.199647px;}
.yd7{bottom:894.899642px;}
.y1a{bottom:903.899638px;}
.ybc{bottom:910.019636px;}
.yd6{bottom:915.059634px;}
.y19{bottom:924.239630px;}
.y40{bottom:924.599630px;}
.ybb{bottom:931.979627px;}
.yd5{bottom:935.219626px;}
.y18{bottom:944.939622px;}
.y3f{bottom:945.299622px;}
.yba{bottom:953.939618px;}
.yd4{bottom:955.379618px;}
.y17{bottom:965.639614px;}
.y3e{bottom:965.999614px;}
.y9{bottom:986.699605px;}
.y8{bottom:1027.739589px;}
.y7{bottom:1048.439581px;}
.y16{bottom:1059.059576px;}
.y6{bottom:1069.139572px;}
.y15{bottom:1088.759564px;}
.y5{bottom:1090.199564px;}
.y14{bottom:1109.819556px;}
.y4{bottom:1110.899556px;}
.y11{bottom:1127.640600px;}
.y13{bottom:1132.319547px;}
.y3{bottom:1152.299539px;}
.yf{bottom:1169.400600px;}
.y2{bottom:1172.999531px;}
.y1{bottom:1193.699523px;}
.ye{bottom:1196.759521px;}
.yc{bottom:1196.939521px;}
.yd{bottom:1222.139511px;}
.h7{height:18.180000px;}
.h6{height:21.780000px;}
.h8{height:22.680000px;}
.h11{height:44.149201px;}
.hc{height:44.534162px;}
.hd{height:54.628572px;}
.hf{height:59.378882px;}
.h3{height:62.327788px;}
.h4{height:63.824389px;}
.h5{height:65.179661px;}
.hb{height:70.628878px;}
.h1{height:70.664034px;}
.ha{height:72.562471px;}
.h2{height:75.093720px;}
.h9{height:76.136805px;}
.h10{height:80.534147px;}
.he{height:94.214142px;}
.h0{height:1263.000000px;}
.w2{width:8.100000px;}
.w3{width:11.520000px;}
.w1{width:236.160000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:106.379957px;}
.xf{left:129.960423px;}
.x14{left:133.379903px;}
.x10{left:156.421292px;}
.x2{left:159.479939px;}
.x1a{left:186.299925px;}
.x2f{left:188.279925px;}
.x5a{left:192.239923px;}
.x51{left:193.859922px;}
.x21{left:195.479922px;}
.x1e{left:198.359921px;}
.x31{left:199.799920px;}
.x1d{left:204.299918px;}
.x5b{left:207.719917px;}
.x67{left:215.459914px;}
.x1f{left:217.079913px;}
.x2b{left:218.339913px;}
.x69{left:219.779912px;}
.x2a{left:221.399911px;}
.x20{left:224.279910px;}
.x22{left:225.899910px;}
.x2d{left:227.159909px;}
.x30{left:229.139908px;}
.x52{left:232.019907px;}
.x2c{left:235.079906px;}
.x23{left:236.339905px;}
.x36{left:237.779905px;}
.x1b{left:238.859904px;}
.x40{left:240.299904px;}
.x46{left:241.379903px;}
.x33{left:245.519902px;}
.x45{left:248.399901px;}
.x65{left:252.899899px;}
.x4b{left:253.979898px;}
.x1c{left:256.139898px;}
.x2e{left:260.459896px;}
.x6a{left:261.539895px;}
.x59{left:266.579893px;}
.x57{left:268.559893px;}
.x32{left:270.179892px;}
.x7{left:272.159875px;}
.x68{left:285.839886px;}
.x38{left:297.359881px;}
.x58{left:300.779880px;}
.x60{left:303.299879px;}
.x66{left:304.919878px;}
.x6{left:306.179878px;}
.x3c{left:313.559875px;}
.xc{left:316.979873px;}
.xa{left:319.860000px;}
.x11{left:325.080656px;}
.xb{left:330.479868px;}
.x3b{left:336.779865px;}
.xd{left:349.919860px;}
.x8{left:352.260000px;}
.x3e{left:358.739857px;}
.x34{left:360.899856px;}
.x5e{left:365.399854px;}
.x43{left:367.739853px;}
.x4a{left:372.239851px;}
.x41{left:375.479850px;}
.x5c{left:386.639845px;}
.x44{left:387.899845px;}
.x49{left:391.319843px;}
.x47{left:393.839842px;}
.x37{left:399.599840px;}
.x3a{left:402.479839px;}
.xe{left:405.179838px;}
.x53{left:406.619837px;}
.x3f{left:419.399832px;}
.x5f{left:424.979830px;}
.x5{left:426.419829px;}
.x5d{left:446.399821px;}
.x3d{left:450.899820px;}
.x42{left:453.239819px;}
.x39{left:456.479817px;}
.x48{left:459.899816px;}
.x35{left:460.979816px;}
.x4d{left:466.919813px;}
.x29{left:471.599811px;}
.x19{left:473.579811px;}
.x50{left:486.179806px;}
.x56{left:492.119803px;}
.x18{left:495.899802px;}
.x28{left:497.519801px;}
.x4e{left:511.199796px;}
.x4f{left:515.699794px;}
.x12{left:532.441308px;}
.x63{left:536.219786px;}
.x27{left:540.179784px;}
.x26{left:545.579782px;}
.x64{left:552.059779px;}
.x25{left:555.839778px;}
.x9{left:588.420000px;}
.x55{left:603.899758px;}
.x54{left:607.679757px;}
.x13{left:615.781275px;}
.x61{left:618.839752px;}
.x17{left:629.459748px;}
.x62{left:644.219742px;}
.x16{left:658.079737px;}
.x24{left:671.579731px;}
.x15{left:716.578879px;}
.x4c{left:770.039692px;}
.x3{left:778.499689px;}
.x4{left:786.779685px;}
@media print{
.v1{vertical-align:-73.599971pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:31.999987pt;}
.v2{vertical-align:44.159982pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.018891pt;}
.ls5{letter-spacing:23.063031pt;}
.ls7{letter-spacing:30.236308pt;}
.ls8{letter-spacing:57.132244pt;}
.ls6{letter-spacing:80.056501pt;}
.ls0{letter-spacing:172.911398pt;}
.ls1{letter-spacing:1097.743561pt;}
.ls3{letter-spacing:1734.153973pt;}
.ws0{word-spacing:-15.999994pt;}
.ws7{word-spacing:-14.767354pt;}
.ws4{word-spacing:-14.463994pt;}
.ws2{word-spacing:-10.847996pt;}
.ws1{word-spacing:0.000000pt;}
.ws3{word-spacing:29.711879pt;}
.ws6{word-spacing:37.391735pt;}
.ws5{word-spacing:83.456154pt;}
._1d{margin-left:-395.183842pt;}
._11{margin-left:-4.561589pt;}
._3{margin-left:-3.661295pt;}
._1{margin-left:-2.383282pt;}
._0{margin-left:-1.264028pt;}
._2{width:1.038309pt;}
._e{width:2.666532pt;}
._4{width:3.631242pt;}
._5{width:4.710451pt;}
._6{width:5.725600pt;}
._13{width:7.073523pt;}
._14{width:7.970198pt;}
._18{width:8.934303pt;}
._10{width:9.928305pt;}
._d{width:10.914707pt;}
._a{width:11.849136pt;}
._b{width:12.765361pt;}
._f{width:14.073526pt;}
._12{width:15.097866pt;}
._9{width:17.169482pt;}
._7{width:18.196158pt;}
._8{width:19.620833pt;}
._c{width:20.693626pt;}
._21{width:21.609029pt;}
._15{width:22.993591pt;}
._1c{width:24.252928pt;}
._16{width:26.461165pt;}
._17{width:27.709808pt;}
._22{width:33.747887pt;}
._19{width:38.587483pt;}
._1a{width:39.631029pt;}
._1b{width:41.091686pt;}
._1e{width:95.247774pt;}
._20{width:143.791942pt;}
._1f{width:162.511935pt;}
._23{width:1360.810122pt;}
.fs4{font-size:47.999981pt;}
.fs1{font-size:53.119979pt;}
.fs5{font-size:58.879976pt;}
.fs0{font-size:63.999974pt;}
.fs3{font-size:74.879970pt;}
.fs2{font-size:85.119966pt;}
.y0{bottom:0.000000pt;}
.y10{bottom:1.759050pt;}
.y12{bottom:4.159064pt;}
.yb{bottom:51.306913pt;}
.ya{bottom:68.746906pt;}
.y3d{bottom:109.066623pt;}
.y10b{bottom:113.066621pt;}
.y7f{bottom:115.466620pt;}
.yd0{bottom:117.066620pt;}
.y11f{bottom:118.346886pt;}
.y6b{bottom:122.666618pt;}
.y3c{bottom:127.466616pt;}
.ycf{bottom:131.466614pt;}
.y7e{bottom:133.866613pt;}
.y11e{bottom:137.226612pt;}
.y6a{bottom:141.066610pt;}
.yde{bottom:145.386609pt;}
.y3b{bottom:145.866608pt;}
.y10a{bottom:149.866607pt;}
.y61{bottom:151.466606pt;}
.ye6{bottom:151.946606pt;}
.y7d{bottom:152.266606pt;}
.y69{bottom:159.466603pt;}
.y11d{bottom:163.146601pt;}
.y3a{bottom:164.266601pt;}
.ydd{bottom:167.786600pt;}
.y109{bottom:168.266599pt;}
.y60{bottom:169.866599pt;}
.y7c{bottom:170.666598pt;}
.y68{bottom:177.866596pt;}
.y39{bottom:182.666594pt;}
.ye5{bottom:186.666592pt;}
.y11c{bottom:188.906591pt;}
.y7b{bottom:189.066591pt;}
.y67{bottom:196.266588pt;}
.y7a{bottom:203.466585pt;}
.ye4{bottom:205.066585pt;}
.y5f{bottom:206.666584pt;}
.y38{bottom:209.066583pt;}
.y66{bottom:214.666581pt;}
.ye3{bottom:223.466577pt;}
.y5e{bottom:225.066577pt;}
.y85{bottom:230.986574pt;}
.y65{bottom:233.066573pt;}
.y37{bottom:235.146573pt;}
.y80{bottom:237.706572pt;}
.ye2{bottom:241.866570pt;}
.y5d{bottom:243.466569pt;}
.y84{bottom:245.706568pt;}
.yd9{bottom:248.106567pt;}
.yd8{bottom:251.146566pt;}
.y64{bottom:251.466566pt;}
.ye1{bottom:260.266563pt;}
.y5c{bottom:261.866562pt;}
.y36{bottom:269.866559pt;}
.y87{bottom:278.026555pt;}
.ye0{bottom:278.666555pt;}
.y5b{bottom:280.266555pt;}
.y81{bottom:284.586553pt;}
.y35{bottom:288.266551pt;}
.y86{bottom:292.586550pt;}
.y96{bottom:297.066548pt;}
.y5a{bottom:298.666547pt;}
.y34{bottom:306.666544pt;}
.y95{bottom:315.466540pt;}
.y59{bottom:317.066540pt;}
.y8a{bottom:317.706540pt;}
.yda{bottom:318.186539pt;}
.y33{bottom:325.066537pt;}
.y82{bottom:331.626534pt;}
.y89{bottom:332.266534pt;}
.y94{bottom:333.866533pt;}
.y58{bottom:335.466532pt;}
.y32{bottom:343.466529pt;}
.y88{bottom:346.986528pt;}
.yb7{bottom:349.866527pt;}
.y93{bottom:352.266526pt;}
.y57{bottom:353.866525pt;}
.y31{bottom:361.866522pt;}
.y8d{bottom:364.746521pt;}
.yb6{bottom:368.266519pt;}
.y92{bottom:370.666518pt;}
.y56{bottom:372.266518pt;}
.ydc{bottom:374.826517pt;}
.y83{bottom:378.666515pt;}
.y8c{bottom:379.306515pt;}
.y30{bottom:380.266515pt;}
.ydf{bottom:385.066513pt;}
.yb5{bottom:386.666512pt;}
.y91{bottom:389.066511pt;}
.y55{bottom:390.666510pt;}
.y8b{bottom:394.026509pt;}
.ydb{bottom:394.346509pt;}
.y2f{bottom:398.666507pt;}
.y90{bottom:403.466505pt;}
.yb4{bottom:405.066505pt;}
.ycb{bottom:407.466504pt;}
.ye7{bottom:408.906503pt;}
.y54{bottom:409.066503pt;}
.yee{bottom:409.546503pt;}
.y2e{bottom:417.066500pt;}
.y9e{bottom:423.466497pt;}
.yca{bottom:425.866496pt;}
.y53{bottom:427.466496pt;}
.y97{bottom:430.186495pt;}
.ye8{bottom:435.306493pt;}
.y2d{bottom:435.466492pt;}
.yef{bottom:435.946492pt;}
.y9d{bottom:438.186491pt;}
.yb3{bottom:441.866490pt;}
.yc9{bottom:444.266489pt;}
.y52{bottom:445.866488pt;}
.y8f{bottom:449.706487pt;}
.y2c{bottom:453.866485pt;}
.ya0{bottom:455.626484pt;}
.yb2{bottom:460.266483pt;}
.ye9{bottom:461.706482pt;}
.y98{bottom:462.346482pt;}
.yc8{bottom:462.666482pt;}
.y51{bottom:464.266481pt;}
.y8e{bottom:467.626480pt;}
.y9f{bottom:470.346479pt;}
.y2b{bottom:472.266478pt;}
.yb1{bottom:478.666475pt;}
.yc7{bottom:481.066474pt;}
.y50{bottom:482.666474pt;}
.ya2{bottom:487.786472pt;}
.yea{bottom:488.106471pt;}
.yf0{bottom:488.746471pt;}
.y2a{bottom:490.666470pt;}
.y99{bottom:494.506469pt;}
.yb0{bottom:497.066468pt;}
.yc6{bottom:499.466467pt;}
.y4f{bottom:501.066466pt;}
.ya1{bottom:502.506466pt;}
.y29{bottom:509.066463pt;}
.y79{bottom:511.466462pt;}
.yeb{bottom:514.506461pt;}
.yf1{bottom:515.146461pt;}
.yaf{bottom:515.466460pt;}
.yc5{bottom:517.866460pt;}
.y4e{bottom:519.466459pt;}
.ya4{bottom:519.946459pt;}
.y9a{bottom:526.666456pt;}
.y28{bottom:527.466456pt;}
.y78{bottom:529.866455pt;}
.yae{bottom:533.866453pt;}
.ya3{bottom:534.666453pt;}
.yc4{bottom:535.946452pt;}
.yf7{bottom:536.266452pt;}
.y4d{bottom:537.866452pt;}
.yec{bottom:540.906450pt;}
.yf2{bottom:541.546450pt;}
.y27{bottom:545.866448pt;}
.y77{bottom:548.266447pt;}
.ya6{bottom:552.106446pt;}
.yad{bottom:552.266446pt;}
.yf6{bottom:554.346445pt;}
.y4c{bottom:555.946444pt;}
.y9b{bottom:558.826443pt;}
.y26{bottom:564.266441pt;}
.y76{bottom:566.666440pt;}
.ya5{bottom:566.826440pt;}
.yed{bottom:567.306440pt;}
.yf3{bottom:567.946439pt;}
.yac{bottom:570.346439pt;}
.ybe{bottom:570.666438pt;}
.y4b{bottom:574.346437pt;}
.y25{bottom:582.666434pt;}
.ya8{bottom:584.266433pt;}
.y75{bottom:585.066433pt;}
.y9c{bottom:590.986430pt;}
.y4a{bottom:592.746430pt;}
.ya7{bottom:598.986427pt;}
.ybd{bottom:600.906426pt;}
.y24{bottom:601.066426pt;}
.y74{bottom:603.466425pt;}
.y10c{bottom:607.786424pt;}
.y113{bottom:608.586423pt;}
.y49{bottom:611.466422pt;}
.yfd{bottom:613.226421pt;}
.y23{bottom:619.466419pt;}
.yf8{bottom:619.786419pt;}
.yc3{bottom:621.386418pt;}
.y73{bottom:621.866418pt;}
.yfc{bottom:627.786416pt;}
.yf5{bottom:628.426415pt;}
.y48{bottom:629.866415pt;}
.yab{bottom:631.786414pt;}
.y10d{bottom:632.106414pt;}
.y114{bottom:632.906414pt;}
.y22{bottom:637.866412pt;}
.y72{bottom:640.266411pt;}
.yf4{bottom:647.946407pt;}
.y47{bottom:648.266407pt;}
.yaa{bottom:649.706407pt;}
.y21{bottom:655.946404pt;}
.y63{bottom:656.266404pt;}
.y10e{bottom:656.426404pt;}
.y115{bottom:657.066404pt;}
.y71{bottom:658.666403pt;}
.yd2{bottom:659.786403pt;}
.yff{bottom:661.386402pt;}
.y46{bottom:666.666400pt;}
.ya9{bottom:667.626400pt;}
.yf9{bottom:668.106399pt;}
.y20{bottom:674.346397pt;}
.y62{bottom:674.666397pt;}
.y106{bottom:675.786396pt;}
.yfe{bottom:676.106396pt;}
.y70{bottom:677.066396pt;}
.y10f{bottom:680.746394pt;}
.y116{bottom:681.386394pt;}
.yd1{bottom:681.706394pt;}
.yb8{bottom:684.746393pt;}
.y45{bottom:685.066393pt;}
.yc0{bottom:692.746390pt;}
.y1f{bottom:693.066389pt;}
.y6f{bottom:695.466388pt;}
.y102{bottom:702.346386pt;}
.y44{bottom:703.466385pt;}
.y110{bottom:705.066385pt;}
.y117{bottom:705.706384pt;}
.ycc{bottom:710.666382pt;}
.y11b{bottom:711.146382pt;}
.y1e{bottom:711.466382pt;}
.y6e{bottom:713.866381pt;}
.yfa{bottom:716.266380pt;}
.y101{bottom:716.906380pt;}
.y105{bottom:718.666379pt;}
.y43{bottom:721.866378pt;}
.y111{bottom:729.386375pt;}
.y11a{bottom:729.546375pt;}
.ybf{bottom:729.706375pt;}
.y1d{bottom:729.866375pt;}
.y118{bottom:730.026375pt;}
.y100{bottom:731.626374pt;}
.y6d{bottom:732.266374pt;}
.yc1{bottom:737.706372pt;}
.ycd{bottom:739.786371pt;}
.y42{bottom:740.266371pt;}
.yd3{bottom:744.746369pt;}
.yb9{bottom:746.666368pt;}
.y107{bottom:747.786368pt;}
.y1c{bottom:748.266367pt;}
.y6c{bottom:750.346367pt;}
.y112{bottom:753.706365pt;}
.y119{bottom:754.346365pt;}
.y104{bottom:757.866364pt;}
.yce{bottom:760.746362pt;}
.y108{bottom:761.706362pt;}
.yfb{bottom:764.586361pt;}
.y1b{bottom:766.666360pt;}
.y103{bottom:772.586358pt;}
.yc2{bottom:779.786355pt;}
.y41{bottom:785.066353pt;}
.yd7{bottom:795.466348pt;}
.y1a{bottom:803.466345pt;}
.ybc{bottom:808.906343pt;}
.yd6{bottom:813.386341pt;}
.y19{bottom:821.546338pt;}
.y40{bottom:821.866338pt;}
.ybb{bottom:828.426335pt;}
.yd5{bottom:831.306334pt;}
.y18{bottom:839.946331pt;}
.y3f{bottom:840.266331pt;}
.yba{bottom:847.946327pt;}
.yd4{bottom:849.226327pt;}
.y17{bottom:858.346323pt;}
.y3e{bottom:858.666323pt;}
.y9{bottom:877.066316pt;}
.y8{bottom:913.546301pt;}
.y7{bottom:931.946294pt;}
.y16{bottom:941.386290pt;}
.y6{bottom:950.346287pt;}
.y15{bottom:967.786280pt;}
.y5{bottom:969.066279pt;}
.y14{bottom:986.506272pt;}
.y4{bottom:987.466272pt;}
.y11{bottom:1002.347200pt;}
.y13{bottom:1006.506264pt;}
.y3{bottom:1024.266257pt;}
.yf{bottom:1039.467200pt;}
.y2{bottom:1042.666250pt;}
.y1{bottom:1061.066242pt;}
.ye{bottom:1063.786241pt;}
.yc{bottom:1063.946241pt;}
.yd{bottom:1086.346232pt;}
.h7{height:16.160000pt;}
.h6{height:19.360000pt;}
.h8{height:20.160000pt;}
.h11{height:39.243734pt;}
.hc{height:39.585922pt;}
.hd{height:48.558731pt;}
.hf{height:52.781229pt;}
.h3{height:55.402478pt;}
.h4{height:56.732790pt;}
.h5{height:57.937477pt;}
.hb{height:62.781225pt;}
.h1{height:62.812475pt;}
.ha{height:64.499974pt;}
.h2{height:66.749973pt;}
.h9{height:67.677160pt;}
.h10{height:71.585909pt;}
.he{height:83.745904pt;}
.h0{height:1122.666667pt;}
.w2{width:7.200000pt;}
.w3{width:10.240000pt;}
.w1{width:209.920000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:94.559962pt;}
.xf{left:115.520376pt;}
.x14{left:118.559914pt;}
.x10{left:139.041148pt;}
.x2{left:141.759946pt;}
.x1a{left:165.599934pt;}
.x2f{left:167.359933pt;}
.x5a{left:170.879932pt;}
.x51{left:172.319931pt;}
.x21{left:173.759930pt;}
.x1e{left:176.319929pt;}
.x31{left:177.599929pt;}
.x1d{left:181.599927pt;}
.x5b{left:184.639926pt;}
.x67{left:191.519923pt;}
.x1f{left:192.959923pt;}
.x2b{left:194.079922pt;}
.x69{left:195.359922pt;}
.x2a{left:196.799921pt;}
.x20{left:199.359920pt;}
.x22{left:200.799920pt;}
.x2d{left:201.919919pt;}
.x30{left:203.679919pt;}
.x52{left:206.239918pt;}
.x2c{left:208.959916pt;}
.x23{left:210.079916pt;}
.x36{left:211.359915pt;}
.x1b{left:212.319915pt;}
.x40{left:213.599915pt;}
.x46{left:214.559914pt;}
.x33{left:218.239913pt;}
.x45{left:220.799912pt;}
.x65{left:224.799910pt;}
.x4b{left:225.759910pt;}
.x1c{left:227.679909pt;}
.x2e{left:231.519907pt;}
.x6a{left:232.479907pt;}
.x59{left:236.959905pt;}
.x57{left:238.719905pt;}
.x32{left:240.159904pt;}
.x7{left:241.919889pt;}
.x68{left:254.079898pt;}
.x38{left:264.319894pt;}
.x58{left:267.359893pt;}
.x60{left:269.599892pt;}
.x66{left:271.039892pt;}
.x6{left:272.159891pt;}
.x3c{left:278.719889pt;}
.xc{left:281.759887pt;}
.xa{left:284.320000pt;}
.x11{left:288.960583pt;}
.xb{left:293.759882pt;}
.x3b{left:299.359880pt;}
.xd{left:311.039876pt;}
.x8{left:313.120000pt;}
.x3e{left:318.879872pt;}
.x34{left:320.799872pt;}
.x5e{left:324.799870pt;}
.x43{left:326.879869pt;}
.x4a{left:330.879868pt;}
.x41{left:333.759866pt;}
.x5c{left:343.679863pt;}
.x44{left:344.799862pt;}
.x49{left:347.839861pt;}
.x47{left:350.079860pt;}
.x37{left:355.199858pt;}
.x3a{left:357.759857pt;}
.xe{left:360.159856pt;}
.x53{left:361.439855pt;}
.x3f{left:372.799851pt;}
.x5f{left:377.759849pt;}
.x5{left:379.039848pt;}
.x5d{left:396.799841pt;}
.x3d{left:400.799840pt;}
.x42{left:402.879839pt;}
.x39{left:405.759838pt;}
.x48{left:408.799836pt;}
.x35{left:409.759836pt;}
.x4d{left:415.039834pt;}
.x29{left:419.199832pt;}
.x19{left:420.959832pt;}
.x50{left:432.159827pt;}
.x56{left:437.439825pt;}
.x18{left:440.799824pt;}
.x28{left:442.239823pt;}
.x4e{left:454.399818pt;}
.x4f{left:458.399817pt;}
.x12{left:473.281163pt;}
.x63{left:476.639809pt;}
.x27{left:480.159808pt;}
.x26{left:484.959806pt;}
.x64{left:490.719804pt;}
.x25{left:494.079802pt;}
.x9{left:523.040000pt;}
.x55{left:536.799785pt;}
.x54{left:540.159784pt;}
.x13{left:547.361134pt;}
.x61{left:550.079780pt;}
.x17{left:559.519776pt;}
.x62{left:572.639771pt;}
.x16{left:584.959766pt;}
.x24{left:596.959761pt;}
.x15{left:636.959004pt;}
.x4c{left:684.479726pt;}
.x3{left:691.999723pt;}
.x4{left:699.359720pt;}
}




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