
    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_9cd911928a909a541b68d90f.woff')format("woff");}.ff1{font-family:ff1;line-height:0.000000;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_db7fbda0fb5a1437036d8e8d.woff')format("woff");}.ff2{font-family:ff2;line-height:1.024902;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_fd30ec5f014cc58f97b3f24e.woff')format("woff");}.ff3{font-family:ff3;line-height:0.985352;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_0f59210c6f784411b05bd872.woff')format("woff");}.ff4{font-family:ff4;line-height:0.970703;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_f7d3f6f370f10895a4a67edb.woff')format("woff");}.ff5{font-family:ff5;line-height:0.947000;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_61c5b4f06c3a28d074f59205.woff')format("woff");}.ff6{font-family:ff6;line-height:0.985352;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_c870a35fab2600fb96d4da71.woff')format("woff");}.ff7{font-family:ff7;line-height:1.123535;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_6007a6e0825cea6730d075a5.woff')format("woff");}.ff8{font-family:ff8;line-height:0.975098;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_36f1d4a671877903668ed043.woff')format("woff");}.ff9{font-family:ff9;line-height:1.041992;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_3a06eeb81f4c43d1a256506c.woff')format("woff");}.ffa{font-family:ffa;line-height:0.906000;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_ff403bf159d52cd9ebd99117.woff')format("woff");}.ffb{font-family:ffb;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;}
.m8{transform:matrix(0.249839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249839,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.m3{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);}
.m1{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,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.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.000180px;}
.ls8{letter-spacing:0.036660px;}
.ls4{letter-spacing:0.079854px;}
.ls3{letter-spacing:0.093120px;}
.ls9{letter-spacing:0.212580px;}
.ls0{letter-spacing:0.235380px;}
.ls1{letter-spacing:0.248100px;}
.lsb{letter-spacing:0.252360px;}
.ls7{letter-spacing:0.322080px;}
.ls5{letter-spacing:0.378514px;}
.lsc{letter-spacing:10.335236px;}
.ls6{letter-spacing:851.386459px;}
.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:-16.493753px;}
.ws8{word-spacing:-15.318508px;}
.ws6{word-spacing:-15.119274px;}
.ws7{word-spacing:-14.939994px;}
.ws9{word-spacing:-14.880234px;}
.ws1{word-spacing:-13.445995px;}
.ws3{word-spacing:-12.011755px;}
.ws2{word-spacing:-11.432875px;}
.ws0{word-spacing:-10.147676px;}
.ws4{word-spacing:0.000000px;}
._17{margin-left:-12.779703px;}
._1b{margin-left:-7.506480px;}
._10{margin-left:-4.132353px;}
._2{margin-left:-2.519409px;}
._1{margin-left:-1.257135px;}
._0{width:1.040186px;}
._6{width:2.172426px;}
._5{width:3.211957px;}
._f{width:4.944811px;}
._d{width:5.946601px;}
._b{width:7.638720px;}
._a{width:8.671841px;}
._c{width:9.982516px;}
._4{width:11.878067px;}
._3{width:13.039487px;}
._e{width:16.328778px;}
._9{width:17.723004px;}
._8{width:18.839771px;}
._7{width:20.091547px;}
._13{width:21.137293px;}
._12{width:22.682942px;}
._11{width:24.049079px;}
._16{width:26.427502px;}
._20{width:27.652333px;}
._15{width:33.530101px;}
._14{width:34.652758px;}
._23{width:39.155708px;}
._22{width:81.610993px;}
._1f{width:83.784236px;}
._1e{width:84.798441px;}
._21{width:88.528098px;}
._18{width:96.446099px;}
._1d{width:161.780653px;}
._19{width:174.768609px;}
._1a{width:183.935127px;}
._1c{width:196.629839px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:30.239988px;}
.fs7{font-size:35.999986px;}
.fs1{font-size:41.759983px;}
.fs6{font-size:48.239981px;}
.fs5{font-size:53.999978px;}
.fs3{font-size:59.759976px;}
.fs4{font-size:66.239974px;}
.fs0{font-size:71.999971px;}
.fs2{font-size:120.239952px;}
.y0{bottom:0.000000px;}
.y154{bottom:2.880035px;}
.y124{bottom:3.238970px;}
.y126{bottom:3.238978px;}
.y12a{bottom:3.238985px;}
.y12c{bottom:3.238992px;}
.y130{bottom:3.239000px;}
.y133{bottom:3.239007px;}
.y135{bottom:3.239014px;}
.y137{bottom:3.239021px;}
.yb6{bottom:3.239040px;}
.yba{bottom:3.239047px;}
.ybf{bottom:3.239054px;}
.yc1{bottom:3.239062px;}
.yc3{bottom:3.239069px;}
.yc5{bottom:3.239076px;}
.yc7{bottom:3.239084px;}
.yc9{bottom:3.239091px;}
.ycd{bottom:3.239098px;}
.ycf{bottom:3.239106px;}
.yd1{bottom:3.239113px;}
.yd5{bottom:3.239121px;}
.yd7{bottom:3.239128px;}
.yd9{bottom:3.239135px;}
.ydd{bottom:3.239143px;}
.ydf{bottom:3.239150px;}
.ye1{bottom:3.239157px;}
.ye4{bottom:3.239165px;}
.ye6{bottom:3.239172px;}
.y30{bottom:3.598956px;}
.y12e{bottom:3.598997px;}
.yb8{bottom:3.599043px;}
.ybd{bottom:3.599062px;}
.y2{bottom:33.960286px;}
.y153{bottom:58.800240px;}
.y3{bottom:61.680275px;}
.ya8{bottom:120.180252px;}
.y101{bottom:124.500250px;}
.ya7{bottom:124.680250px;}
.y8c{bottom:125.759950px;}
.y7e{bottom:130.619948px;}
.ya6{bottom:136.920245px;}
.y2e{bottom:137.999945px;}
.y152{bottom:140.699944px;}
.y8b{bottom:145.919942px;}
.y7d{bottom:150.599940px;}
.y100{bottom:154.199938px;}
.y2d{bottom:157.979937px;}
.y151{bottom:160.679936px;}
.y8a{bottom:165.899934px;}
.y7c{bottom:170.579932px;}
.y2c{bottom:177.959929px;}
.yff{bottom:180.299928px;}
.y150{bottom:180.659928px;}
.y89{bottom:185.879926px;}
.y7b{bottom:190.559924px;}
.y2b{bottom:197.939921px;}
.y14f{bottom:200.639920px;}
.y88{bottom:205.859918px;}
.y7a{bottom:210.539916px;}
.y2a{bottom:217.919913px;}
.y14e{bottom:220.619912px;}
.y87{bottom:225.839910px;}
.y79{bottom:230.519908px;}
.y29{bottom:237.899905px;}
.y14d{bottom:240.599904px;}
.y86{bottom:245.819902px;}
.y78{bottom:250.499900px;}
.y28{bottom:257.879897px;}
.y14c{bottom:260.579896px;}
.y85{bottom:265.799894px;}
.y77{bottom:270.479892px;}
.y27{bottom:277.859889px;}
.y120{bottom:280.559888px;}
.y84{bottom:285.779886px;}
.y76{bottom:290.459884px;}
.y26{bottom:297.839881px;}
.y11f{bottom:300.539880px;}
.y83{bottom:305.759878px;}
.y75{bottom:310.439876px;}
.y14b{bottom:320.519872px;}
.y11e{bottom:320.699872px;}
.y25{bottom:323.039871px;}
.y82{bottom:325.739870px;}
.y74{bottom:330.599868px;}
.yf1{bottom:338.699865px;}
.y14a{bottom:340.499864px;}
.y11d{bottom:340.679864px;}
.y81{bottom:345.719862px;}
.y73{bottom:350.579860px;}
.y24{bottom:353.819858px;}
.yf0{bottom:358.679857px;}
.y149{bottom:360.479856px;}
.y11c{bottom:360.659856px;}
.y80{bottom:365.699854px;}
.ya5{bottom:370.559852px;}
.y72{bottom:375.779850px;}
.yef{bottom:378.659849px;}
.y11b{bottom:380.639848px;}
.y23{bottom:383.519847px;}
.y7f{bottom:385.859846px;}
.ya4{bottom:390.539844px;}
.yee{bottom:398.639841px;}
.y11a{bottom:400.619840px;}
.y22{bottom:402.599839px;}
.y71{bottom:405.839838px;}
.ya3{bottom:410.519836px;}
.yed{bottom:418.619833px;}
.y119{bottom:420.599832px;}
.y21{bottom:422.579831px;}
.y70{bottom:425.819830px;}
.ya2{bottom:430.499828px;}
.yec{bottom:438.599825px;}
.y118{bottom:440.579824px;}
.y20{bottom:444.359822px;}
.y6f{bottom:445.799822px;}
.ya1{bottom:450.479820px;}
.yeb{bottom:458.579817px;}
.y117{bottom:460.559816px;}
.y1f{bottom:465.779814px;}
.ya0{bottom:470.459812px;}
.yea{bottom:478.559809px;}
.y116{bottom:480.539808px;}
.y6e{bottom:485.759806px;}
.y1e{bottom:487.739805px;}
.y9f{bottom:490.439804px;}
.ye9{bottom:498.719801px;}
.y115{bottom:500.519800px;}
.y6d{bottom:505.739798px;}
.y1d{bottom:509.699796px;}
.y9e{bottom:510.419796px;}
.y148{bottom:515.819794px;}
.ye8{bottom:518.699793px;}
.yfe{bottom:520.139792px;}
.y114{bottom:520.499792px;}
.y6c{bottom:525.719790px;}
.y9d{bottom:530.399788px;}
.y1c{bottom:531.659787px;}
.y147{bottom:535.799786px;}
.y113{bottom:540.479784px;}
.y6b{bottom:545.699782px;}
.ye7{bottom:548.399781px;}
.yfd{bottom:550.199780px;}
.y9c{bottom:550.559780px;}
.y1b{bottom:553.799778px;}
.y146{bottom:555.779778px;}
.y112{bottom:560.639776px;}
.y6a{bottom:565.679774px;}
.ye5{bottom:566.760600px;}
.yfc{bottom:570.179772px;}
.y9b{bottom:570.539772px;}
.y1a{bottom:575.759770px;}
.ye2{bottom:579.179768px;}
.y111{bottom:580.619768px;}
.ye3{bottom:585.120600px;}
.y69{bottom:585.659766px;}
.yfb{bottom:590.159764px;}
.y9a{bottom:590.519764px;}
.y145{bottom:595.739762px;}
.y19{bottom:597.719761px;}
.y110{bottom:600.599760px;}
.ye0{bottom:603.480600px;}
.y68{bottom:605.639758px;}
.yfa{bottom:610.319756px;}
.y99{bottom:610.499756px;}
.y4e{bottom:611.399755px;}
.y144{bottom:615.719754px;}
.ydb{bottom:616.439753px;}
.y18{bottom:619.679752px;}
.y10f{bottom:620.579752px;}
.yde{bottom:621.840600px;}
.y67{bottom:625.799750px;}
.y4d{bottom:628.499749px;}
.yf9{bottom:630.299748px;}
.y98{bottom:630.479748px;}
.yda{bottom:633.719747px;}
.y143{bottom:635.699746px;}
.ydc{bottom:640.200600px;}
.y10e{bottom:640.559744px;}
.y17{bottom:641.639743px;}
.y4c{bottom:645.599742px;}
.y66{bottom:645.779742px;}
.yf8{bottom:650.279740px;}
.y97{bottom:650.459740px;}
.y142{bottom:655.679738px;}
.yd8{bottom:658.560600px;}
.y10d{bottom:660.539736px;}
.y4b{bottom:662.699735px;}
.y16{bottom:663.779734px;}
.y65{bottom:665.759734px;}
.yf7{bottom:670.259732px;}
.y96{bottom:670.439732px;}
.yd3{bottom:671.519731px;}
.y141{bottom:675.839730px;}
.yd6{bottom:676.920600px;}
.y4a{bottom:679.799728px;}
.y10c{bottom:680.519728px;}
.y15{bottom:685.739726px;}
.yd2{bottom:688.799724px;}
.yf6{bottom:690.239724px;}
.y95{bottom:690.419724px;}
.yd4{bottom:695.280600px;}
.y140{bottom:695.819722px;}
.y49{bottom:696.899721px;}
.y10b{bottom:700.499720px;}
.y64{bottom:705.719718px;}
.y14{bottom:707.699717px;}
.yf5{bottom:710.219716px;}
.y94{bottom:710.399716px;}
.y48{bottom:712.739715px;}
.yd0{bottom:713.640600px;}
.y13f{bottom:715.799714px;}
.y63{bottom:725.699710px;}
.ycb{bottom:726.779709px;}
.y47{bottom:728.759708px;}
.y13{bottom:729.659708px;}
.yf4{bottom:730.199708px;}
.y93{bottom:730.379708px;}
.yce{bottom:732.000600px;}
.ybb{bottom:735.239706px;}
.y13e{bottom:735.779706px;}
.yca{bottom:743.879702px;}
.y62{bottom:745.679702px;}
.y46{bottom:746.579701px;}
.yf3{bottom:750.179700px;}
.y92{bottom:750.359700px;}
.ycc{bottom:750.540600px;}
.y12{bottom:751.619699px;}
.y10a{bottom:751.979699px;}
.y13d{bottom:755.759698px;}
.y45{bottom:764.039694px;}
.y61{bottom:765.659694px;}
.y109{bottom:767.280600px;}
.yc8{bottom:768.900600px;}
.y91{bottom:770.339692px;}
.y11{bottom:773.579691px;}
.y13c{bottom:775.739690px;}
.y107{bottom:779.519688px;}
.y44{bottom:779.879688px;}
.y108{bottom:785.280600px;}
.y60{bottom:785.639686px;}
.yc6{bottom:787.260600px;}
.y90{bottom:790.499684px;}
.y10{bottom:795.719682px;}
.y43{bottom:796.079682px;}
.y106{bottom:803.640600px;}
.y5f{bottom:805.619678px;}
.yc4{bottom:805.620600px;}
.yf2{bottom:806.159678px;}
.y8f{bottom:810.479676px;}
.y42{bottom:813.899674px;}
.y13b{bottom:815.699674px;}
.y104{bottom:816.059674px;}
.yf{bottom:817.679673px;}
.y105{bottom:822.000600px;}
.yc2{bottom:823.980600px;}
.y5e{bottom:825.599670px;}
.y8e{bottom:830.459668px;}
.y41{bottom:831.359667px;}
.y13a{bottom:835.679666px;}
.ye{bottom:839.639664px;}
.ybc{bottom:841.980600px;}
.yc0{bottom:842.340600px;}
.y5d{bottom:845.579662px;}
.y40{bottom:847.199661px;}
.y15a{bottom:850.439660px;}
.y103{bottom:853.859658px;}
.y8d{bottom:855.659658px;}
.ybe{bottom:860.700600px;}
.yd{bottom:861.599655px;}
.y3f{bottom:863.039655px;}
.y5c{bottom:865.739654px;}
.y159{bottom:870.419652px;}
.y102{bottom:875.639650px;}
.y3e{bottom:878.879648px;}
.yb9{bottom:879.060600px;}
.yc{bottom:883.559647px;}
.y5b{bottom:885.719646px;}
.yb7{bottom:887.880600px;}
.y158{bottom:890.399644px;}
.yb4{bottom:891.479643px;}
.y3d{bottom:894.719642px;}
.y139{bottom:895.619642px;}
.yb5{bottom:897.420600px;}
.yb{bottom:905.699638px;}
.y157{bottom:910.379636px;}
.y3c{bottom:910.559636px;}
.y138{bottom:925.319630px;}
.y5a{bottom:925.679630px;}
.y3b{bottom:926.579629px;}
.ya{bottom:927.659629px;}
.yb3{bottom:929.279628px;}
.y156{bottom:930.359628px;}
.y136{bottom:943.860600px;}
.y3a{bottom:944.399622px;}
.y59{bottom:945.659622px;}
.y9{bottom:949.439620px;}
.y155{bottom:955.559618px;}
.yb2{bottom:959.339616px;}
.y134{bottom:960.960600px;}
.y39{bottom:961.859615px;}
.y58{bottom:965.639614px;}
.y8{bottom:968.699613px;}
.y131{bottom:973.379611px;}
.y38{bottom:977.699609px;}
.yb1{bottom:979.319608px;}
.y132{bottom:979.500600px;}
.y57{bottom:985.619606px;}
.y37{bottom:993.539603px;}
.y12f{bottom:997.860600px;}
.yb0{bottom:999.299600px;}
.y12d{bottom:1002.720600px;}
.y7{bottom:1004.699598px;}
.y56{bottom:1005.599598px;}
.y127{bottom:1006.319597px;}
.y36{bottom:1009.379596px;}
.y12b{bottom:1016.220600px;}
.yaf{bottom:1019.279592px;}
.y35{bottom:1025.579590px;}
.y128{bottom:1028.639589px;}
.y129{bottom:1034.580600px;}
.yad{bottom:1039.439584px;}
.y6{bottom:1040.699584px;}
.y34{bottom:1043.399583px;}
.yae{bottom:1044.659582px;}
.y55{bottom:1045.559582px;}
.y125{bottom:1052.940600px;}
.yac{bottom:1059.419576px;}
.y33{bottom:1061.219576px;}
.y122{bottom:1065.359574px;}
.y54{bottom:1065.539574px;}
.y123{bottom:1071.300600px;}
.y5{bottom:1076.699569px;}
.y32{bottom:1079.039568px;}
.yab{bottom:1079.399568px;}
.y53{bottom:1085.519566px;}
.y31{bottom:1096.139562px;}
.yaa{bottom:1099.379560px;}
.y121{bottom:1102.799559px;}
.y52{bottom:1105.679558px;}
.y2f{bottom:1107.120600px;}
.y4{bottom:1112.699555px;}
.ya9{bottom:1124.579550px;}
.y51{bottom:1125.659550px;}
.y1{bottom:1175.519530px;}
.y50{bottom:1191.539523px;}
.y4f{bottom:1207.559517px;}
.h1{height:0.000000px;}
.h17{height:12.240000px;}
.h18{height:13.860000px;}
.h15{height:16.560000px;}
.h16{height:16.920000px;}
.hb{height:17.640000px;}
.h13{height:28.290926px;}
.h3{height:32.237565px;}
.h2{height:33.359049px;}
.h12{height:33.679674px;}
.he{height:37.239946px;}
.h11{height:37.758149px;}
.hf{height:38.535453px;}
.h14{height:41.114864px;}
.hc{height:41.686507px;}
.hd{height:43.136701px;}
.h10{height:45.130763px;}
.h5{height:47.737950px;}
.h8{height:48.288941px;}
.h9{height:51.135448px;}
.h7{height:51.847011px;}
.h6{height:52.914354px;}
.ha{height:55.908259px;}
.h4{height:94.113595px;}
.h0{height:1263.000000px;}
.w23{width:0.180000px;}
.w2{width:3.420000px;}
.w16{width:3.780000px;}
.w7{width:4.320000px;}
.w13{width:5.040000px;}
.w4{width:7.380000px;}
.w6{width:7.560000px;}
.w18{width:11.340000px;}
.we{width:14.580000px;}
.w17{width:14.940000px;}
.w11{width:16.200000px;}
.w10{width:18.720000px;}
.wa{width:19.620000px;}
.wb{width:20.520000px;}
.w14{width:22.500000px;}
.w1e{width:23.580000px;}
.w1c{width:23.760000px;}
.wd{width:25.920000px;}
.wf{width:26.280000px;}
.w15{width:29.880000px;}
.w19{width:30.060000px;}
.w5{width:31.680000px;}
.w22{width:33.660000px;}
.w1d{width:33.840000px;}
.w1a{width:34.920000px;}
.w21{width:35.460000px;}
.wc{width:36.180000px;}
.w3{width:37.260000px;}
.w1b{width:38.700000px;}
.w9{width:40.500000px;}
.w1{width:46.080000px;}
.w1f{width:52.020000px;}
.w20{width:52.920000px;}
.w12{width:56.160000px;}
.w8{width:58.680000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x6{left:56.340000px;}
.x7{left:102.420000px;}
.x8{left:105.840000px;}
.x5{left:134.819732px;}
.x11{left:137.699945px;}
.x9{left:143.100000px;}
.x53{left:157.139937px;}
.xd{left:166.679859px;}
.x55{left:171.180375px;}
.x77{left:189.719924px;}
.x82{left:193.500000px;}
.x21{left:198.540000px;}
.x6c{left:210.239916px;}
.x6d{left:214.559914px;}
.x22{left:224.459910px;}
.x4{left:272.339891px;}
.x78{left:282.600000px;}
.x2{left:285.839886px;}
.xb{left:298.439923px;}
.x63{left:305.640000px;}
.x79{left:308.520000px;}
.xc{left:313.559962px;}
.x80{left:318.060000px;}
.x23{left:328.140000px;}
.x2a{left:329.760000px;}
.x69{left:331.560000px;}
.x7f{left:335.520000px;}
.x6a{left:336.600000px;}
.x10{left:350.819860px;}
.x51{left:356.039858px;}
.x6b{left:360.180000px;}
.xe{left:365.759854px;}
.xf{left:369.179852px;}
.x59{left:381.780000px;}
.x6f{left:383.400000px;}
.x64{left:400.500000px;}
.x18{left:409.680000px;}
.x2f{left:414.720000px;}
.x46{left:417.240000px;}
.xa{left:421.379831px;}
.x37{left:424.620000px;}
.x2b{left:428.400000px;}
.x49{left:432.180000px;}
.x48{left:433.440000px;}
.x24{left:435.960000px;}
.x30{left:437.220000px;}
.x5a{left:440.460000px;}
.x70{left:442.080000px;}
.x3{left:445.499822px;}
.x5b{left:460.980000px;}
.x71{left:462.420000px;}
.x84{left:463.500000px;}
.x19{left:468.360000px;}
.x1a{left:487.080000px;}
.x7a{left:488.700000px;}
.x3c{left:492.120000px;}
.x65{left:494.820000px;}
.x38{left:498.420000px;}
.x5c{left:501.480000px;}
.x72{left:502.920000px;}
.x2c{left:505.800000px;}
.x12{left:507.959797px;}
.x31{left:509.580000px;}
.x13{left:512.279795px;}
.x25{left:513.360000px;}
.x3d{left:514.620000px;}
.x5d{left:520.020000px;}
.x56{left:524.520000px;}
.x4c{left:525.780000px;}
.x1b{left:527.580000px;}
.x5e{left:539.640000px;}
.x14{left:543.960000px;}
.x7b{left:546.300000px;}
.x3e{left:548.640000px;}
.x66{left:553.860000px;}
.x39{left:554.940000px;}
.x57{left:556.200000px;}
.x6e{left:557.820000px;}
.x1c{left:563.220000px;}
.x32{left:566.100000px;}
.x4a{left:569.880000px;}
.x3f{left:571.140000px;}
.x15{left:575.640000px;}
.x5f{left:579.240000px;}
.x4d{left:582.300000px;}
.x73{left:585.540000px;}
.x1d{left:598.500000px;}
.x60{left:599.760000px;}
.x40{left:603.540000px;}
.x74{left:606.060000px;}
.x3a{left:609.840000px;}
.x7c{left:611.820000px;}
.x2d{left:617.220000px;}
.x1e{left:619.020000px;}
.x33{left:621.000000px;}
.x26{left:624.780000px;}
.x41{left:626.040000px;}
.x4e{left:637.200000px;}
.x61{left:638.280000px;}
.x75{left:641.700000px;}
.x1f{left:653.400000px;}
.x34{left:658.440000px;}
.x43{left:664.740000px;}
.x27{left:672.120000px;}
.x62{left:674.460000px;}
.x45{left:675.900000px;}
.x76{left:677.880000px;}
.x4b{left:679.680000px;}
.x42{left:683.460000px;}
.x35{left:688.320000px;}
.x20{left:689.580000px;}
.x4f{left:692.100000px;}
.x67{left:699.120000px;}
.x7d{left:700.560000px;}
.x68{left:702.900000px;}
.x7e{left:704.340000px;}
.x58{left:707.579717px;}
.x28{left:709.920000px;}
.x36{left:713.700000px;}
.x16{left:718.379713px;}
.x3b{left:721.260000px;}
.x54{left:726.479385px;}
.x2e{left:728.640000px;}
.x52{left:731.159708px;}
.x44{left:732.420000px;}
.x83{left:734.400000px;}
.x29{left:736.200000px;}
.x81{left:738.000000px;}
.x47{left:739.980000px;}
.x50{left:748.620000px;}
.x17{left:753.840000px;}
.x1{left:758.699697px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.000160pt;}
.ls8{letter-spacing:0.032587pt;}
.ls4{letter-spacing:0.070981pt;}
.ls3{letter-spacing:0.082773pt;}
.ls9{letter-spacing:0.188960pt;}
.ls0{letter-spacing:0.209227pt;}
.ls1{letter-spacing:0.220533pt;}
.lsb{letter-spacing:0.224320pt;}
.ls7{letter-spacing:0.286293pt;}
.ls5{letter-spacing:0.336457pt;}
.lsc{letter-spacing:9.186876pt;}
.ls6{letter-spacing:756.787964pt;}
.ws5{word-spacing:-14.661114pt;}
.ws8{word-spacing:-13.616451pt;}
.ws6{word-spacing:-13.439355pt;}
.ws7{word-spacing:-13.279995pt;}
.ws9{word-spacing:-13.226875pt;}
.ws1{word-spacing:-11.951995pt;}
.ws3{word-spacing:-10.677116pt;}
.ws2{word-spacing:-10.162556pt;}
.ws0{word-spacing:-9.020156pt;}
.ws4{word-spacing:0.000000pt;}
._17{margin-left:-11.359736pt;}
._1b{margin-left:-6.672427pt;}
._10{margin-left:-3.673202pt;}
._2{margin-left:-2.239475pt;}
._1{margin-left:-1.117453pt;}
._0{width:0.924610pt;}
._6{width:1.931045pt;}
._5{width:2.855073pt;}
._f{width:4.395387pt;}
._d{width:5.285867pt;}
._b{width:6.789973pt;}
._a{width:7.708303pt;}
._c{width:8.873348pt;}
._4{width:10.558282pt;}
._3{width:11.590655pt;}
._e{width:14.514469pt;}
._9{width:15.753781pt;}
._8{width:16.746464pt;}
._7{width:17.859153pt;}
._13{width:18.788705pt;}
._12{width:20.162615pt;}
._11{width:21.376959pt;}
._16{width:23.491113pt;}
._20{width:24.579852pt;}
._15{width:29.804534pt;}
._14{width:30.802452pt;}
._23{width:34.805073pt;}
._22{width:72.543105pt;}
._1f{width:74.474876pt;}
._1e{width:75.376392pt;}
._21{width:78.691643pt;}
._18{width:85.729866pt;}
._1d{width:143.805025pt;}
._19{width:155.349875pt;}
._1a{width:163.497890pt;}
._1c{width:174.782079pt;}
.fs8{font-size:26.879989pt;}
.fs7{font-size:31.999987pt;}
.fs1{font-size:37.119985pt;}
.fs6{font-size:42.879983pt;}
.fs5{font-size:47.999981pt;}
.fs3{font-size:53.119979pt;}
.fs4{font-size:58.879976pt;}
.fs0{font-size:63.999974pt;}
.fs2{font-size:106.879957pt;}
.y0{bottom:0.000000pt;}
.y154{bottom:2.560031pt;}
.y124{bottom:2.879085pt;}
.y126{bottom:2.879091pt;}
.y12a{bottom:2.879098pt;}
.y12c{bottom:2.879104pt;}
.y130{bottom:2.879111pt;}
.y133{bottom:2.879117pt;}
.y135{bottom:2.879124pt;}
.y137{bottom:2.879130pt;}
.yb6{bottom:2.879146pt;}
.yba{bottom:2.879153pt;}
.ybf{bottom:2.879159pt;}
.yc1{bottom:2.879166pt;}
.yc3{bottom:2.879173pt;}
.yc5{bottom:2.879179pt;}
.yc7{bottom:2.879186pt;}
.yc9{bottom:2.879192pt;}
.ycd{bottom:2.879199pt;}
.ycf{bottom:2.879205pt;}
.yd1{bottom:2.879212pt;}
.yd5{bottom:2.879218pt;}
.yd7{bottom:2.879225pt;}
.yd9{bottom:2.879231pt;}
.ydd{bottom:2.879238pt;}
.ydf{bottom:2.879244pt;}
.ye1{bottom:2.879251pt;}
.ye4{bottom:2.879257pt;}
.ye6{bottom:2.879264pt;}
.y30{bottom:3.199072pt;}
.y12e{bottom:3.199109pt;}
.yb8{bottom:3.199150pt;}
.ybd{bottom:3.199166pt;}
.y2{bottom:30.186921pt;}
.y153{bottom:52.266880pt;}
.y3{bottom:54.826911pt;}
.ya8{bottom:106.826891pt;}
.y101{bottom:110.666889pt;}
.ya7{bottom:110.826889pt;}
.y8c{bottom:111.786622pt;}
.y7e{bottom:116.106620pt;}
.ya6{bottom:121.706885pt;}
.y2e{bottom:122.666618pt;}
.y152{bottom:125.066617pt;}
.y8b{bottom:129.706615pt;}
.y7d{bottom:133.866613pt;}
.y100{bottom:137.066612pt;}
.y2d{bottom:140.426610pt;}
.y151{bottom:142.826610pt;}
.y8a{bottom:147.466608pt;}
.y7c{bottom:151.626606pt;}
.y2c{bottom:158.186603pt;}
.yff{bottom:160.266603pt;}
.y150{bottom:160.586602pt;}
.y89{bottom:165.226601pt;}
.y7b{bottom:169.386599pt;}
.y2b{bottom:175.946596pt;}
.y14f{bottom:178.346595pt;}
.y88{bottom:182.986593pt;}
.y7a{bottom:187.146592pt;}
.y2a{bottom:193.706589pt;}
.y14e{bottom:196.106588pt;}
.y87{bottom:200.746586pt;}
.y79{bottom:204.906585pt;}
.y29{bottom:211.466582pt;}
.y14d{bottom:213.866581pt;}
.y86{bottom:218.506579pt;}
.y78{bottom:222.666578pt;}
.y28{bottom:229.226575pt;}
.y14c{bottom:231.626574pt;}
.y85{bottom:236.266572pt;}
.y77{bottom:240.426570pt;}
.y27{bottom:246.986568pt;}
.y120{bottom:249.386567pt;}
.y84{bottom:254.026565pt;}
.y76{bottom:258.186563pt;}
.y26{bottom:264.746561pt;}
.y11f{bottom:267.146560pt;}
.y83{bottom:271.786558pt;}
.y75{bottom:275.946556pt;}
.y14b{bottom:284.906553pt;}
.y11e{bottom:285.066553pt;}
.y25{bottom:287.146552pt;}
.y82{bottom:289.546551pt;}
.y74{bottom:293.866549pt;}
.yf1{bottom:301.066546pt;}
.y14a{bottom:302.666546pt;}
.y11d{bottom:302.826546pt;}
.y81{bottom:307.306544pt;}
.y73{bottom:311.626542pt;}
.y24{bottom:314.506541pt;}
.yf0{bottom:318.826539pt;}
.y149{bottom:320.426538pt;}
.y11c{bottom:320.586538pt;}
.y80{bottom:325.066537pt;}
.ya5{bottom:329.386535pt;}
.y72{bottom:334.026533pt;}
.yef{bottom:336.586532pt;}
.y11b{bottom:338.346531pt;}
.y23{bottom:340.906530pt;}
.y7f{bottom:342.986529pt;}
.ya4{bottom:347.146528pt;}
.yee{bottom:354.346525pt;}
.y11a{bottom:356.106524pt;}
.y22{bottom:357.866524pt;}
.y71{bottom:360.746522pt;}
.ya3{bottom:364.906521pt;}
.yed{bottom:372.106518pt;}
.y119{bottom:373.866517pt;}
.y21{bottom:375.626516pt;}
.y70{bottom:378.506515pt;}
.ya2{bottom:382.666514pt;}
.yec{bottom:389.866511pt;}
.y118{bottom:391.626510pt;}
.y20{bottom:394.986509pt;}
.y6f{bottom:396.266508pt;}
.ya1{bottom:400.426506pt;}
.yeb{bottom:407.626504pt;}
.y117{bottom:409.386503pt;}
.y1f{bottom:414.026501pt;}
.ya0{bottom:418.186499pt;}
.yea{bottom:425.386497pt;}
.y116{bottom:427.146496pt;}
.y6e{bottom:431.786494pt;}
.y1e{bottom:433.546493pt;}
.y9f{bottom:435.946492pt;}
.ye9{bottom:443.306489pt;}
.y115{bottom:444.906489pt;}
.y6d{bottom:449.546487pt;}
.y1d{bottom:453.066485pt;}
.y9e{bottom:453.706485pt;}
.y148{bottom:458.506483pt;}
.ye8{bottom:461.066482pt;}
.yfe{bottom:462.346482pt;}
.y114{bottom:462.666482pt;}
.y6c{bottom:467.306480pt;}
.y9d{bottom:471.466478pt;}
.y1c{bottom:472.586478pt;}
.y147{bottom:476.266476pt;}
.y113{bottom:480.426474pt;}
.y6b{bottom:485.066473pt;}
.ye7{bottom:487.466472pt;}
.yfd{bottom:489.066471pt;}
.y9c{bottom:489.386471pt;}
.y1b{bottom:492.266470pt;}
.y146{bottom:494.026469pt;}
.y112{bottom:498.346467pt;}
.y6a{bottom:502.826466pt;}
.ye5{bottom:503.787200pt;}
.yfc{bottom:506.826464pt;}
.y9b{bottom:507.146464pt;}
.y1a{bottom:511.786462pt;}
.ye2{bottom:514.826461pt;}
.y111{bottom:516.106460pt;}
.ye3{bottom:520.107200pt;}
.y69{bottom:520.586458pt;}
.yfb{bottom:524.586457pt;}
.y9a{bottom:524.906457pt;}
.y145{bottom:529.546455pt;}
.y19{bottom:531.306454pt;}
.y110{bottom:533.866453pt;}
.ye0{bottom:536.427200pt;}
.y68{bottom:538.346451pt;}
.yfa{bottom:542.506450pt;}
.y99{bottom:542.666450pt;}
.y4e{bottom:543.466449pt;}
.y144{bottom:547.306448pt;}
.ydb{bottom:547.946447pt;}
.y18{bottom:550.826446pt;}
.y10f{bottom:551.626446pt;}
.yde{bottom:552.747200pt;}
.y67{bottom:556.266444pt;}
.y4d{bottom:558.666443pt;}
.yf9{bottom:560.266443pt;}
.y98{bottom:560.426442pt;}
.yda{bottom:563.306441pt;}
.y143{bottom:565.066441pt;}
.ydc{bottom:569.067200pt;}
.y10e{bottom:569.386439pt;}
.y17{bottom:570.346439pt;}
.y4c{bottom:573.866437pt;}
.y66{bottom:574.026437pt;}
.yf8{bottom:578.026435pt;}
.y97{bottom:578.186435pt;}
.y142{bottom:582.826434pt;}
.yd8{bottom:585.387200pt;}
.y10d{bottom:587.146432pt;}
.y4b{bottom:589.066431pt;}
.y16{bottom:590.026431pt;}
.y65{bottom:591.786430pt;}
.yf7{bottom:595.786428pt;}
.y96{bottom:595.946428pt;}
.yd3{bottom:596.906428pt;}
.y141{bottom:600.746426pt;}
.yd6{bottom:601.707200pt;}
.y4a{bottom:604.266425pt;}
.y10c{bottom:604.906425pt;}
.y15{bottom:609.546423pt;}
.yd2{bottom:612.266422pt;}
.yf6{bottom:613.546421pt;}
.y95{bottom:613.706421pt;}
.yd4{bottom:618.027200pt;}
.y140{bottom:618.506419pt;}
.y49{bottom:619.466419pt;}
.y10b{bottom:622.666418pt;}
.y64{bottom:627.306416pt;}
.y14{bottom:629.066415pt;}
.yf5{bottom:631.306414pt;}
.y94{bottom:631.466414pt;}
.y48{bottom:633.546413pt;}
.yd0{bottom:634.347200pt;}
.y13f{bottom:636.266412pt;}
.y63{bottom:645.066409pt;}
.ycb{bottom:646.026408pt;}
.y47{bottom:647.786408pt;}
.y13{bottom:648.586407pt;}
.yf4{bottom:649.066407pt;}
.y93{bottom:649.226407pt;}
.yce{bottom:650.667200pt;}
.ybb{bottom:653.546405pt;}
.y13e{bottom:654.026405pt;}
.yca{bottom:661.226402pt;}
.y62{bottom:662.826402pt;}
.y46{bottom:663.626401pt;}
.yf3{bottom:666.826400pt;}
.y92{bottom:666.986400pt;}
.ycc{bottom:667.147200pt;}
.y12{bottom:668.106399pt;}
.y10a{bottom:668.426399pt;}
.y13d{bottom:671.786398pt;}
.y45{bottom:679.146395pt;}
.y61{bottom:680.586394pt;}
.y109{bottom:682.027200pt;}
.yc8{bottom:683.467200pt;}
.y91{bottom:684.746393pt;}
.y11{bottom:687.626392pt;}
.y13c{bottom:689.546391pt;}
.y107{bottom:692.906390pt;}
.y44{bottom:693.226389pt;}
.y108{bottom:698.027200pt;}
.y60{bottom:698.346387pt;}
.yc6{bottom:699.787200pt;}
.y90{bottom:702.666386pt;}
.y10{bottom:707.306384pt;}
.y43{bottom:707.626384pt;}
.y106{bottom:714.347200pt;}
.y5f{bottom:716.106380pt;}
.yc4{bottom:716.107200pt;}
.yf2{bottom:716.586380pt;}
.y8f{bottom:720.426378pt;}
.y42{bottom:723.466377pt;}
.y13b{bottom:725.066377pt;}
.y104{bottom:725.386377pt;}
.yf{bottom:726.826376pt;}
.y105{bottom:730.667200pt;}
.yc2{bottom:732.427200pt;}
.y5e{bottom:733.866373pt;}
.y8e{bottom:738.186371pt;}
.y41{bottom:738.986371pt;}
.y13a{bottom:742.826370pt;}
.ye{bottom:746.346368pt;}
.ybc{bottom:748.427200pt;}
.yc0{bottom:748.747200pt;}
.y5d{bottom:751.626366pt;}
.y40{bottom:753.066365pt;}
.y15a{bottom:755.946364pt;}
.y103{bottom:758.986363pt;}
.y8d{bottom:760.586362pt;}
.ybe{bottom:765.067200pt;}
.yd{bottom:765.866360pt;}
.y3f{bottom:767.146360pt;}
.y5c{bottom:769.546359pt;}
.y159{bottom:773.706357pt;}
.y102{bottom:778.346355pt;}
.y3e{bottom:781.226354pt;}
.yb9{bottom:781.387200pt;}
.yc{bottom:785.386353pt;}
.y5b{bottom:787.306352pt;}
.yb7{bottom:789.227200pt;}
.y158{bottom:791.466350pt;}
.yb4{bottom:792.426350pt;}
.y3d{bottom:795.306349pt;}
.y139{bottom:796.106348pt;}
.yb5{bottom:797.707200pt;}
.yb{bottom:805.066345pt;}
.y157{bottom:809.226343pt;}
.y3c{bottom:809.386343pt;}
.y138{bottom:822.506338pt;}
.y5a{bottom:822.826338pt;}
.y3b{bottom:823.626337pt;}
.ya{bottom:824.586337pt;}
.yb3{bottom:826.026336pt;}
.y156{bottom:826.986336pt;}
.y136{bottom:838.987200pt;}
.y3a{bottom:839.466331pt;}
.y59{bottom:840.586330pt;}
.y9{bottom:843.946329pt;}
.y155{bottom:849.386327pt;}
.yb2{bottom:852.746326pt;}
.y134{bottom:854.187200pt;}
.y39{bottom:854.986325pt;}
.y58{bottom:858.346323pt;}
.y8{bottom:861.066322pt;}
.y131{bottom:865.226321pt;}
.y38{bottom:869.066319pt;}
.yb1{bottom:870.506318pt;}
.y132{bottom:870.667200pt;}
.y57{bottom:876.106316pt;}
.y37{bottom:883.146313pt;}
.y12f{bottom:886.987200pt;}
.yb0{bottom:888.266311pt;}
.y12d{bottom:891.307200pt;}
.y7{bottom:893.066309pt;}
.y56{bottom:893.866309pt;}
.y127{bottom:894.506309pt;}
.y36{bottom:897.226308pt;}
.y12b{bottom:903.307200pt;}
.yaf{bottom:906.026304pt;}
.y35{bottom:911.626302pt;}
.y128{bottom:914.346301pt;}
.y129{bottom:919.627200pt;}
.yad{bottom:923.946297pt;}
.y6{bottom:925.066297pt;}
.y34{bottom:927.466296pt;}
.yae{bottom:928.586295pt;}
.y55{bottom:929.386295pt;}
.y125{bottom:935.947200pt;}
.yac{bottom:941.706290pt;}
.y33{bottom:943.306289pt;}
.y122{bottom:946.986288pt;}
.y54{bottom:947.146288pt;}
.y123{bottom:952.267200pt;}
.y5{bottom:957.066284pt;}
.y32{bottom:959.146283pt;}
.yab{bottom:959.466283pt;}
.y53{bottom:964.906281pt;}
.y31{bottom:974.346277pt;}
.yaa{bottom:977.226276pt;}
.y121{bottom:980.266275pt;}
.y52{bottom:982.826274pt;}
.y2f{bottom:984.107200pt;}
.y4{bottom:989.066271pt;}
.ya9{bottom:999.626267pt;}
.y51{bottom:1000.586266pt;}
.y1{bottom:1044.906249pt;}
.y50{bottom:1059.146243pt;}
.y4f{bottom:1073.386237pt;}
.h1{height:0.000000pt;}
.h17{height:10.880000pt;}
.h18{height:12.320000pt;}
.h15{height:14.720000pt;}
.h16{height:15.040000pt;}
.hb{height:15.680000pt;}
.h13{height:25.147490pt;}
.h3{height:28.655614pt;}
.h2{height:29.652488pt;}
.h12{height:29.937488pt;}
.he{height:33.102174pt;}
.h11{height:33.562799pt;}
.hf{height:34.253736pt;}
.h14{height:36.546545pt;}
.hc{height:37.054673pt;}
.hd{height:38.343735pt;}
.h10{height:40.116234pt;}
.h5{height:42.433733pt;}
.h8{height:42.923503pt;}
.h9{height:45.453732pt;}
.h7{height:46.086232pt;}
.h6{height:47.034981pt;}
.ha{height:49.696230pt;}
.h4{height:83.656529pt;}
.h0{height:1122.666667pt;}
.w23{width:0.160000pt;}
.w2{width:3.040000pt;}
.w16{width:3.360000pt;}
.w7{width:3.840000pt;}
.w13{width:4.480000pt;}
.w4{width:6.560000pt;}
.w6{width:6.720000pt;}
.w18{width:10.080000pt;}
.we{width:12.960000pt;}
.w17{width:13.280000pt;}
.w11{width:14.400000pt;}
.w10{width:16.640000pt;}
.wa{width:17.440000pt;}
.wb{width:18.240000pt;}
.w14{width:20.000000pt;}
.w1e{width:20.960000pt;}
.w1c{width:21.120000pt;}
.wd{width:23.040000pt;}
.wf{width:23.360000pt;}
.w15{width:26.560000pt;}
.w19{width:26.720000pt;}
.w5{width:28.160000pt;}
.w22{width:29.920000pt;}
.w1d{width:30.080000pt;}
.w1a{width:31.040000pt;}
.w21{width:31.520000pt;}
.wc{width:32.160000pt;}
.w3{width:33.120000pt;}
.w1b{width:34.400000pt;}
.w9{width:36.000000pt;}
.w1{width:40.960000pt;}
.w1f{width:46.240000pt;}
.w20{width:47.040000pt;}
.w12{width:49.920000pt;}
.w8{width:52.160000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x6{left:50.080000pt;}
.x7{left:91.040000pt;}
.x8{left:94.080000pt;}
.x5{left:119.839762pt;}
.x11{left:122.399951pt;}
.x9{left:127.200000pt;}
.x53{left:139.679944pt;}
.xd{left:148.159875pt;}
.x55{left:152.160333pt;}
.x77{left:168.639933pt;}
.x82{left:172.000000pt;}
.x21{left:176.480000pt;}
.x6c{left:186.879925pt;}
.x6d{left:190.719924pt;}
.x22{left:199.519920pt;}
.x4{left:242.079903pt;}
.x78{left:251.200000pt;}
.x2{left:254.079898pt;}
.xb{left:265.279932pt;}
.x63{left:271.680000pt;}
.x79{left:274.240000pt;}
.xc{left:278.719966pt;}
.x80{left:282.720000pt;}
.x23{left:291.680000pt;}
.x2a{left:293.120000pt;}
.x69{left:294.720000pt;}
.x7f{left:298.240000pt;}
.x6a{left:299.200000pt;}
.x10{left:311.839875pt;}
.x51{left:316.479873pt;}
.x6b{left:320.160000pt;}
.xe{left:325.119870pt;}
.xf{left:328.159869pt;}
.x59{left:339.360000pt;}
.x6f{left:340.800000pt;}
.x64{left:356.000000pt;}
.x18{left:364.160000pt;}
.x2f{left:368.640000pt;}
.x46{left:370.880000pt;}
.xa{left:374.559850pt;}
.x37{left:377.440000pt;}
.x2b{left:380.800000pt;}
.x49{left:384.160000pt;}
.x48{left:385.280000pt;}
.x24{left:387.520000pt;}
.x30{left:388.640000pt;}
.x5a{left:391.520000pt;}
.x70{left:392.960000pt;}
.x3{left:395.999842pt;}
.x5b{left:409.760000pt;}
.x71{left:411.040000pt;}
.x84{left:412.000000pt;}
.x19{left:416.320000pt;}
.x1a{left:432.960000pt;}
.x7a{left:434.400000pt;}
.x3c{left:437.440000pt;}
.x65{left:439.840000pt;}
.x38{left:443.040000pt;}
.x5c{left:445.760000pt;}
.x72{left:447.040000pt;}
.x2c{left:449.600000pt;}
.x12{left:451.519819pt;}
.x31{left:452.960000pt;}
.x13{left:455.359818pt;}
.x25{left:456.320000pt;}
.x3d{left:457.440000pt;}
.x5d{left:462.240000pt;}
.x56{left:466.240000pt;}
.x4c{left:467.360000pt;}
.x1b{left:468.960000pt;}
.x5e{left:479.680000pt;}
.x14{left:483.520000pt;}
.x7b{left:485.600000pt;}
.x3e{left:487.680000pt;}
.x66{left:492.320000pt;}
.x39{left:493.280000pt;}
.x57{left:494.400000pt;}
.x6e{left:495.840000pt;}
.x1c{left:500.640000pt;}
.x32{left:503.200000pt;}
.x4a{left:506.560000pt;}
.x3f{left:507.680000pt;}
.x15{left:511.680000pt;}
.x5f{left:514.880000pt;}
.x4d{left:517.600000pt;}
.x73{left:520.480000pt;}
.x1d{left:532.000000pt;}
.x60{left:533.120000pt;}
.x40{left:536.480000pt;}
.x74{left:538.720000pt;}
.x3a{left:542.080000pt;}
.x7c{left:543.840000pt;}
.x2d{left:548.640000pt;}
.x1e{left:550.240000pt;}
.x33{left:552.000000pt;}
.x26{left:555.360000pt;}
.x41{left:556.480000pt;}
.x4e{left:566.400000pt;}
.x61{left:567.360000pt;}
.x75{left:570.400000pt;}
.x1f{left:580.800000pt;}
.x34{left:585.280000pt;}
.x43{left:590.880000pt;}
.x27{left:597.440000pt;}
.x62{left:599.520000pt;}
.x45{left:600.800000pt;}
.x76{left:602.560000pt;}
.x4b{left:604.160000pt;}
.x42{left:607.520000pt;}
.x35{left:611.840000pt;}
.x20{left:612.960000pt;}
.x4f{left:615.200000pt;}
.x67{left:621.440000pt;}
.x7d{left:622.720000pt;}
.x68{left:624.800000pt;}
.x7e{left:626.080000pt;}
.x58{left:628.959748pt;}
.x28{left:631.040000pt;}
.x36{left:634.400000pt;}
.x16{left:638.559745pt;}
.x3b{left:641.120000pt;}
.x54{left:645.759454pt;}
.x2e{left:647.680000pt;}
.x52{left:649.919740pt;}
.x44{left:651.040000pt;}
.x83{left:652.800000pt;}
.x29{left:654.400000pt;}
.x81{left:656.000000pt;}
.x47{left:657.760000pt;}
.x50{left:665.440000pt;}
.x17{left:670.080000pt;}
.x1{left:674.399730pt;}
}




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