
    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_1edd6ff668d132dbe55a33b1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_b57588d7ff770c7bf0a4f337.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.861816;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_a34707417efdc411665591a6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.857910;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_111d3e8209d7126928f4406d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_b3f50bedd8960828540bffbc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_c6cf9e3b11dd05ee89427f3d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.904297;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_bd8c9eca6425744f22c524cb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_c8402bce3a403ac0388590a5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938965;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_e103a95a6a8a770cfb4352fc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.866699;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_f3701f1851eb6bb868fe6ee2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938477;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_43364118411b8143a248f4fb.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.891113;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_3f3fb4fda64cea18cb3db4b4.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;}
.m6{transform:matrix(0.249510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249510,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);}
.m5{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:-6.479997px;}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.034446px;}
.lsa{letter-spacing:0.034519px;}
.lsc{letter-spacing:0.063491px;}
.lsb{letter-spacing:0.068862px;}
.ls3{letter-spacing:0.149760px;}
.ls4{letter-spacing:0.149765px;}
.ls2{letter-spacing:0.178760px;}
.ls7{letter-spacing:0.182590px;}
.ls9{letter-spacing:0.182634px;}
.ls8{letter-spacing:34.087306px;}
.ls6{letter-spacing:88.190365px;}
.ls0{letter-spacing:1507.140957px;}
.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;}
}
.wse{word-spacing:-35.855986px;}
.ws3{word-spacing:-32.399987px;}
.ws9{word-spacing:-18.182626px;}
.ws8{word-spacing:-18.182583px;}
.wsa{word-spacing:-18.068855px;}
.ws7{word-spacing:-17.999993px;}
.ws5{word-spacing:-16.613273px;}
.wsb{word-spacing:-16.559993px;}
.ws2{word-spacing:-15.011994px;}
.ws0{word-spacing:-14.970234px;}
.ws4{word-spacing:-14.939994px;}
.ws1{word-spacing:-13.505755px;}
.wsc{word-spacing:-13.499995px;}
.wsd{word-spacing:-8.999996px;}
.ws6{word-spacing:0.000000px;}
._15{margin-left:-4.660995px;}
._a{margin-left:-3.594296px;}
._2{margin-left:-2.472644px;}
._1{margin-left:-1.261330px;}
._0{width:1.152887px;}
._3{width:2.329766px;}
._4{width:3.858788px;}
._d{width:5.861561px;}
._c{width:6.870457px;}
._7{width:8.063151px;}
._8{width:9.141363px;}
._b{width:10.206213px;}
._6{width:11.883713px;}
._12{width:13.138752px;}
._f{width:14.540617px;}
._14{width:15.578512px;}
._5{width:16.592252px;}
._e{width:18.747932px;}
._9{width:20.898922px;}
._31{width:22.597076px;}
._30{width:23.784212px;}
._23{width:25.580229px;}
._13{width:26.875257px;}
._16{width:28.555064px;}
._17{width:29.859903px;}
._32{width:30.968990px;}
._10{width:45.242877px;}
._11{width:46.471975px;}
._24{width:88.744974px;}
._21{width:126.516849px;}
._1c{width:153.799044px;}
._33{width:170.899275px;}
._22{width:176.291869px;}
._19{width:207.310897px;}
._27{width:219.208922px;}
._1f{width:225.310930px;}
._25{width:227.445657px;}
._1a{width:237.609740px;}
._26{width:254.858635px;}
._29{width:263.518039px;}
._2d{width:277.018034px;}
._2a{width:290.931018px;}
._2c{width:304.431012px;}
._2e{width:331.018012px;}
._2f{width:344.518007px;}
._1d{width:357.627482px;}
._20{width:363.609215px;}
._28{width:371.930985px;}
._18{width:398.740057px;}
._2b{width:481.343705px;}
._1b{width:496.876206px;}
._1e{width:1070.717876px;}
.fcd{color:rgb(0,101,204);}
.fc1{color:rgb(64,64,64);}
.fc2{color:rgb(255,255,255);}
.fc9{color:rgb(51,51,51);}
.fcb{color:rgb(0,176,80);}
.fc4{color:rgb(192,0,0);}
.fc5{color:rgb(0,112,192);}
.fc6{color:rgb(83,129,53);}
.fce{color:transparent;}
.fc3{color:rgb(68,84,106);}
.fc7{color:rgb(0,32,96);}
.fca{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fc8{color:rgb(44,62,80);}
.fcc{color:rgb(91,155,213);}
.fs5{font-size:35.999986px;}
.fs2{font-size:48.239981px;}
.fs3{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs1{font-size:66.239974px;}
.fs4{font-size:71.999971px;}
.y5{bottom:-14.399994px;}
.y0{bottom:0.000000px;}
.yf4{bottom:2.879632px;}
.y4d{bottom:3.779943px;}
.ybf{bottom:3.959602px;}
.ybd{bottom:3.959611px;}
.yc1{bottom:3.959621px;}
.yc3{bottom:3.959629px;}
.yc8{bottom:3.959646px;}
.y9c{bottom:3.959655px;}
.ycb{bottom:3.959662px;}
.y9a{bottom:3.959670px;}
.yc6{bottom:4.319638px;}
.y45{bottom:4.499583px;}
.y3f{bottom:4.499613px;}
.y12{bottom:4.499687px;}
.y20{bottom:4.499701px;}
.y9{bottom:4.499980px;}
.ya{bottom:28.259989px;}
.y8{bottom:46.080000px;}
.y6{bottom:50.579980px;}
.y7{bottom:52.199979px;}
.ybb{bottom:133.559947px;}
.yed{bottom:136.979945px;}
.y98{bottom:137.519945px;}
.y4c{bottom:139.140000px;}
.y4b{bottom:142.919943px;}
.y123{bottom:143.459943px;}
.y7a{bottom:150.479940px;}
.yba{bottom:154.259938px;}
.yec{bottom:157.679937px;}
.y97{bottom:158.219937px;}
.y4a{bottom:161.459935px;}
.y13d{bottom:162.359935px;}
.y122{bottom:164.159934px;}
.y79{bottom:171.179932px;}
.yb9{bottom:174.959930px;}
.yeb{bottom:178.379929px;}
.y96{bottom:178.919928px;}
.y49{bottom:179.999928px;}
.y13c{bottom:181.439927px;}
.y121{bottom:184.859926px;}
.y78{bottom:191.879923px;}
.yb8{bottom:195.659922px;}
.y1e{bottom:197.099921px;}
.y48{bottom:198.719921px;}
.yea{bottom:199.079920px;}
.y95{bottom:199.619920px;}
.y13b{bottom:200.339920px;}
.y120{bottom:205.559918px;}
.y77{bottom:212.579915px;}
.yb7{bottom:216.359913px;}
.y47{bottom:217.259913px;}
.y13a{bottom:219.419912px;}
.ye9{bottom:219.779912px;}
.y94{bottom:224.459910px;}
.y11f{bottom:226.259909px;}
.y76{bottom:233.279907px;}
.y46{bottom:236.699905px;}
.yb6{bottom:237.059905px;}
.y139{bottom:238.319905px;}
.ye8{bottom:240.479904px;}
.y169{bottom:246.779901px;}
.y11e{bottom:246.959901px;}
.y93{bottom:249.299900px;}
.y75{bottom:253.979898px;}
.y138{bottom:257.219897px;}
.yb5{bottom:257.759897px;}
.ye7{bottom:261.179896px;}
.y168{bottom:265.679894px;}
.y3d{bottom:266.039894px;}
.y11d{bottom:267.659893px;}
.y92{bottom:274.139890px;}
.y74{bottom:274.679890px;}
.y137{bottom:276.299889px;}
.yb4{bottom:278.459889px;}
.ye6{bottom:281.699887px;}
.y3c{bottom:283.319887px;}
.y167{bottom:284.579886px;}
.y11c{bottom:288.359885px;}
.y73{bottom:295.199882px;}
.y91{bottom:298.979880px;}
.yb3{bottom:299.159880px;}
.y3b{bottom:300.419880px;}
.ye5{bottom:302.399879px;}
.y166{bottom:303.659879px;}
.y11b{bottom:309.059876px;}
.y136{bottom:314.279874px;}
.y72{bottom:315.899874px;}
.y3a{bottom:317.699873px;}
.yb2{bottom:319.859872px;}
.y165{bottom:322.559871px;}
.ye4{bottom:323.099871px;}
.y90{bottom:323.819870px;}
.y1d{bottom:327.779869px;}
.y11a{bottom:329.759868px;}
.y135{bottom:333.179867px;}
.y39{bottom:334.979866px;}
.y71{bottom:336.599865px;}
.yb1{bottom:340.559864px;}
.y164{bottom:341.639863px;}
.ye3{bottom:343.799862px;}
.y8f{bottom:348.659861px;}
.y119{bottom:350.459860px;}
.y134{bottom:352.079859px;}
.y38{bottom:352.259859px;}
.y70{bottom:357.299857px;}
.y163{bottom:360.539856px;}
.yb0{bottom:361.259855px;}
.ye2{bottom:364.499854px;}
.y37{bottom:369.539852px;}
.y118{bottom:370.979852px;}
.y133{bottom:371.159852px;}
.y8e{bottom:373.499851px;}
.y6f{bottom:377.999849px;}
.y162{bottom:379.439848px;}
.yaf{bottom:381.959847px;}
.ye1{bottom:385.199846px;}
.y36{bottom:386.819845px;}
.y132{bottom:390.059844px;}
.y117{bottom:391.679843px;}
.y8d{bottom:398.339841px;}
.y161{bottom:398.519841px;}
.y6e{bottom:398.699841px;}
.yae{bottom:402.659839px;}
.y35{bottom:403.919838px;}
.ye0{bottom:405.899838px;}
.y131{bottom:409.139836px;}
.y116{bottom:412.379835px;}
.y160{bottom:417.419833px;}
.y6d{bottom:419.399832px;}
.y34{bottom:421.199832px;}
.y8c{bottom:423.179831px;}
.yad{bottom:423.359831px;}
.ydf{bottom:426.599829px;}
.y130{bottom:428.039829px;}
.y115{bottom:433.079827px;}
.y15f{bottom:436.499825px;}
.y33{bottom:438.479825px;}
.y6c{bottom:440.099824px;}
.yac{bottom:444.059822px;}
.y12f{bottom:446.939821px;}
.yde{bottom:447.299821px;}
.y8b{bottom:448.019821px;}
.y1c{bottom:451.979819px;}
.y114{bottom:453.779818px;}
.y15e{bottom:455.399818px;}
.y32{bottom:455.759818px;}
.y6b{bottom:460.799816px;}
.yab{bottom:464.759814px;}
.y12e{bottom:466.019814px;}
.ydd{bottom:467.999813px;}
.y8a{bottom:472.859811px;}
.y31{bottom:473.039811px;}
.y15d{bottom:474.299810px;}
.y113{bottom:474.479810px;}
.y6a{bottom:481.499807px;}
.y12d{bottom:484.919806px;}
.yaa{bottom:485.459806px;}
.ydc{bottom:488.699805px;}
.y30{bottom:490.139804px;}
.y15c{bottom:493.379803px;}
.y112{bottom:495.179802px;}
.y89{bottom:497.699801px;}
.y69{bottom:502.199799px;}
.y12c{bottom:503.999798px;}
.ya9{bottom:506.159798px;}
.y2f{bottom:507.419797px;}
.ydb{bottom:509.399796px;}
.y15b{bottom:512.279795px;}
.y1b{bottom:514.979794px;}
.y111{bottom:515.879794px;}
.y88{bottom:522.539791px;}
.y68{bottom:522.899791px;}
.y2e{bottom:524.699790px;}
.ya8{bottom:526.859789px;}
.yda{bottom:530.099788px;}
.y15a{bottom:531.359787px;}
.y1a{bottom:531.539787px;}
.y110{bottom:536.579785px;}
.y12b{bottom:541.799783px;}
.y2d{bottom:541.979783px;}
.y67{bottom:543.599783px;}
.y87{bottom:547.199781px;}
.ya7{bottom:547.559781px;}
.y19{bottom:548.099781px;}
.y159{bottom:550.259780px;}
.yd9{bottom:550.799780px;}
.y10f{bottom:557.279777px;}
.y2c{bottom:559.259776px;}
.y12a{bottom:560.879776px;}
.y18{bottom:563.399775px;}
.y66{bottom:564.299774px;}
.ya6{bottom:568.259773px;}
.y158{bottom:569.339772px;}
.yd8{bottom:571.499771px;}
.y86{bottom:572.039771px;}
.y2b{bottom:576.539769px;}
.y129{bottom:579.779768px;}
.y65{bottom:584.999766px;}
.y10e{bottom:586.979765px;}
.y157{bottom:588.239765px;}
.ya5{bottom:588.959764px;}
.yd7{bottom:592.199763px;}
.y2a{bottom:593.639763px;}
.y85{bottom:596.879761px;}
.y128{bottom:598.859760px;}
.y64{bottom:605.699758px;}
.y156{bottom:607.139757px;}
.ya4{bottom:609.659756px;}
.y29{bottom:610.919756px;}
.yd6{bottom:612.899755px;}
.y10d{bottom:615.779754px;}
.y84{bottom:617.579753px;}
.y127{bottom:617.759753px;}
.y17{bottom:625.139750px;}
.y155{bottom:626.219750px;}
.y63{bottom:626.399749px;}
.y28{bottom:628.199749px;}
.ya3{bottom:630.359748px;}
.yd5{bottom:633.599747px;}
.y126{bottom:636.659745px;}
.y10a{bottom:637.379745px;}
.y83{bottom:638.279745px;}
.y10c{bottom:641.339743px;}
.y154{bottom:645.119742px;}
.y27{bottom:645.479742px;}
.y62{bottom:647.099741px;}
.ya2{bottom:651.059740px;}
.y109{bottom:652.859739px;}
.yd4{bottom:654.299738px;}
.y125{bottom:655.739738px;}
.y82{bottom:662.399735px;}
.y26{bottom:662.759735px;}
.y153{bottom:664.199734px;}
.y61{bottom:667.799733px;}
.y108{bottom:668.339733px;}
.y10b{bottom:672.839731px;}
.y124{bottom:674.639730px;}
.yd3{bottom:674.999730px;}
.y25{bottom:680.039728px;}
.y152{bottom:683.099727px;}
.ya1{bottom:683.279727px;}
.y81{bottom:686.339725px;}
.y16{bottom:686.879725px;}
.y60{bottom:688.499725px;}
.y107{bottom:693.899722px;}
.yd2{bottom:695.699722px;}
.y24{bottom:697.139721px;}
.y151{bottom:701.999719px;}
.y15{bottom:703.619719px;}
.y5f{bottom:709.199716px;}
.y80{bottom:710.279716px;}
.ya0{bottom:713.519715px;}
.y23{bottom:714.419714px;}
.y104{bottom:715.319714px;}
.yd1{bottom:716.399713px;}
.y106{bottom:719.279712px;}
.y150{bottom:721.079712px;}
.y5e{bottom:729.899708px;}
.y103{bottom:730.799708px;}
.y22{bottom:731.699707px;}
.y7f{bottom:734.219706px;}
.yd0{bottom:737.099705px;}
.y14f{bottom:739.979704px;}
.y9f{bottom:742.319703px;}
.y1f{bottom:742.860000px;}
.y102{bottom:746.279701px;}
.y21{bottom:748.979700px;}
.y14{bottom:750.059700px;}
.y5d{bottom:750.599700px;}
.y105{bottom:750.779700px;}
.ycf{bottom:757.799697px;}
.y7e{bottom:758.159697px;}
.y14e{bottom:759.059696px;}
.y5c{bottom:771.299691px;}
.y101{bottom:771.839691px;}
.y9e{bottom:772.379691px;}
.y14d{bottom:777.959689px;}
.yce{bottom:778.499689px;}
.y11{bottom:779.040000px;}
.y7d{bottom:782.279687px;}
.y13{bottom:784.799686px;}
.y5b{bottom:791.999683px;}
.yfe{bottom:793.259683px;}
.y14c{bottom:796.859681px;}
.y100{bottom:797.399681px;}
.ycd{bottom:799.199680px;}
.y9d{bottom:801.359679px;}
.y7c{bottom:806.219678px;}
.yfd{bottom:808.919676px;}
.y5a{bottom:812.699675px;}
.y14b{bottom:815.939674px;}
.ycc{bottom:819.899672px;}
.y99{bottom:821.520000px;}
.yfc{bottom:824.399670px;}
.yff{bottom:828.899668px;}
.y7b{bottom:830.159668px;}
.y10{bottom:830.879668px;}
.y59{bottom:833.399667px;}
.y14a{bottom:834.839666px;}
.yca{bottom:840.060000px;}
.yfb{bottom:849.779660px;}
.yf{bottom:851.579659px;}
.y149{bottom:853.919658px;}
.y58{bottom:854.099658px;}
.y9b{bottom:859.320000px;}
.yc9{bottom:860.760000px;}
.yf8{bottom:871.379651px;}
.y148{bottom:872.819651px;}
.y57{bottom:874.799650px;}
.yfa{bottom:875.339650px;}
.ye{bottom:881.279647px;}
.yc7{bottom:881.460000px;}
.yf7{bottom:886.859645px;}
.y147{bottom:891.719643px;}
.y56{bottom:895.499642px;}
.yc5{bottom:901.800000px;}
.yd{bottom:901.979639px;}
.yf6{bottom:902.339639px;}
.yc4{bottom:906.119638px;}
.yf9{bottom:906.839637px;}
.y146{bottom:910.799636px;}
.y55{bottom:916.199634px;}
.yf3{bottom:918.360000px;}
.yee{bottom:921.959631px;}
.yc{bottom:922.679631px;}
.yc2{bottom:922.860000px;}
.y145{bottom:929.699628px;}
.yf2{bottom:936.719625px;}
.y54{bottom:936.899625px;}
.yc0{bottom:943.560000px;}
.y144{bottom:948.779620px;}
.yf1{bottom:952.379619px;}
.y53{bottom:957.599617px;}
.y43{bottom:960.659616px;}
.y3e{bottom:963.540000px;}
.y143{bottom:967.679613px;}
.ybc{bottom:967.680000px;}
.yf0{bottom:967.859613px;}
.y52{bottom:978.299609px;}
.yef{bottom:983.339607px;}
.y42{bottom:985.499606px;}
.y142{bottom:986.579605px;}
.ybe{bottom:991.620000px;}
.yf5{bottom:998.819600px;}
.y51{bottom:998.999600px;}
.y141{bottom:1005.659598px;}
.y41{bottom:1011.779595px;}
.y50{bottom:1019.699592px;}
.y140{bottom:1024.559590px;}
.y44{bottom:1038.780000px;}
.y4f{bottom:1040.399584px;}
.y40{bottom:1041.299583px;}
.y13f{bottom:1043.639583px;}
.y4e{bottom:1061.099576px;}
.y13e{bottom:1062.539575px;}
.y4{bottom:1082.339567px;}
.yb{bottom:1108.439557px;}
.y3{bottom:1114.019554px;}
.y2{bottom:1131.299547px;}
.y1{bottom:1148.579541px;}
.h3{height:1.440000px;}
.h19{height:14.940000px;}
.h12{height:18.000000px;}
.ha{height:20.160000px;}
.h5{height:20.340000px;}
.h16{height:20.520000px;}
.h1a{height:25.013662px;}
.h4{height:32.976549px;}
.hf{height:36.624009px;}
.h7{height:36.703110px;}
.hd{height:36.914048px;}
.h18{height:37.520493px;}
.he{height:39.339828px;}
.h6{height:40.851546px;}
.h1{height:41.522679px;}
.hc{height:43.390178px;}
.h11{height:43.536076px;}
.h17{height:44.893107px;}
.h2{height:45.281232px;}
.h1b{height:46.025138px;}
.hb{height:48.095137px;}
.h8{height:48.796855px;}
.h9{height:49.992168px;}
.h13{height:50.027324px;}
.h10{height:52.277323px;}
.h15{height:52.417948px;}
.h14{height:52.453104px;}
.h0{height:1188.000000px;}
.w7{width:3.600000px;}
.w5{width:3.780000px;}
.w1f{width:4.500000px;}
.w16{width:4.680000px;}
.w2{width:5.040000px;}
.we{width:5.760000px;}
.w13{width:6.120000px;}
.w12{width:6.660000px;}
.w23{width:6.840000px;}
.w8{width:8.280000px;}
.wa{width:8.820000px;}
.wb{width:9.000000px;}
.w1{width:9.720000px;}
.w11{width:13.500000px;}
.w9{width:14.040000px;}
.w3{width:14.940000px;}
.w22{width:18.720000px;}
.w1c{width:23.940000px;}
.w21{width:27.000000px;}
.w1a{width:29.520000px;}
.w17{width:31.500000px;}
.w6{width:32.760000px;}
.w24{width:33.300000px;}
.w20{width:39.060000px;}
.wc{width:41.040000px;}
.w4{width:55.620000px;}
.wf{width:57.960000px;}
.w10{width:70.920000px;}
.w1e{width:90.000000px;}
.w14{width:97.920000px;}
.wd{width:104.040000px;}
.w1b{width:153.360000px;}
.w19{width:189.000000px;}
.w1d{width:217.980000px;}
.w15{width:331.020000px;}
.w18{width:398.520000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x28{left:106.380000px;}
.x5{left:107.999957px;}
.x2{left:109.259282px;}
.x1{left:111.239956px;}
.x26{left:115.558756px;}
.x19{left:117.719953px;}
.x17{left:119.699952px;}
.x25{left:125.459950px;}
.x15{left:130.679948px;}
.x6{left:133.199947px;}
.x1b{left:134.639946px;}
.xd{left:136.980000px;}
.x16{left:138.779945px;}
.x3e{left:140.940000px;}
.x9{left:142.199943px;}
.xe{left:151.920000px;}
.x27{left:161.998817px;}
.x1a{left:166.319933px;}
.x18{left:176.399929px;}
.x45{left:194.759922px;}
.x42{left:201.420000px;}
.x43{left:205.920000px;}
.xf{left:207.540000px;}
.xa{left:208.799467px;}
.x10{left:211.320000px;}
.x57{left:215.999914px;}
.x11{left:244.080000px;}
.x12{left:247.680000px;}
.x20{left:256.139898px;}
.x1c{left:260.639896px;}
.x3f{left:264.780000px;}
.x50{left:271.439891px;}
.x13{left:281.340000px;}
.x40{left:288.720000px;}
.x41{left:293.400000px;}
.x1d{left:301.499879px;}
.x14{left:303.479879px;}
.xb{left:305.639360px;}
.x1e{left:313.379875px;}
.x21{left:341.639863px;}
.x3d{left:356.040000px;}
.x1f{left:364.139854px;}
.xc{left:391.859843px;}
.x7{left:399.779840px;}
.x46{left:404.639854px;}
.x47{left:423.360000px;}
.x55{left:428.399829px;}
.x56{left:437.219825px;}
.x49{left:504.713206px;}
.x4a{left:508.313208px;}
.x3c{left:509.940000px;}
.x29{left:511.560000px;}
.x48{left:515.699794px;}
.x4b{left:525.780000px;}
.x51{left:527.939789px;}
.x52{left:536.759785px;}
.x38{left:540.360000px;}
.x30{left:548.460000px;}
.x2a{left:552.600000px;}
.x4c{left:559.080000px;}
.x31{left:561.960000px;}
.x2d{left:569.520000px;}
.x44{left:575.460000px;}
.x39{left:579.960000px;}
.x22{left:596.519761px;}
.x24{left:598.320000px;}
.x32{left:603.000000px;}
.x35{left:606.420000px;}
.x3{left:615.418270px;}
.x4d{left:620.459752px;}
.x4e{left:629.100000px;}
.x3a{left:647.460000px;}
.x2e{left:670.140000px;}
.x36{left:686.880000px;}
.x23{left:691.200000px;}
.x2b{left:694.440000px;}
.x33{left:695.880000px;}
.x4f{left:715.140000px;}
.x53{left:720.179712px;}
.x3b{left:727.380000px;}
.x54{left:728.999708px;}
.x2f{left:752.400000px;}
.x37{left:753.840000px;}
.x2c{left:798.480000px;}
.x34{left:799.920000px;}
.x8{left:804.600000px;}
.x4{left:809.999676px;}
@media print{
.v1{vertical-align:-5.759998pt;}
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.030618pt;}
.lsa{letter-spacing:0.030684pt;}
.lsc{letter-spacing:0.056436pt;}
.lsb{letter-spacing:0.061211pt;}
.ls3{letter-spacing:0.133120pt;}
.ls4{letter-spacing:0.133125pt;}
.ls2{letter-spacing:0.158898pt;}
.ls7{letter-spacing:0.162302pt;}
.ls9{letter-spacing:0.162341pt;}
.ls8{letter-spacing:30.299828pt;}
.ls6{letter-spacing:78.391435pt;}
.ls0{letter-spacing:1339.680851pt;}
.wse{word-spacing:-31.871987pt;}
.ws3{word-spacing:-28.799988pt;}
.ws9{word-spacing:-16.162335pt;}
.ws8{word-spacing:-16.162296pt;}
.wsa{word-spacing:-16.061204pt;}
.ws7{word-spacing:-15.999994pt;}
.ws5{word-spacing:-14.767354pt;}
.wsb{word-spacing:-14.719994pt;}
.ws2{word-spacing:-13.343995pt;}
.ws0{word-spacing:-13.306875pt;}
.ws4{word-spacing:-13.279995pt;}
.ws1{word-spacing:-12.005115pt;}
.wsc{word-spacing:-11.999995pt;}
.wsd{word-spacing:-7.999997pt;}
.ws6{word-spacing:0.000000pt;}
._15{margin-left:-4.143107pt;}
._a{margin-left:-3.194930pt;}
._2{margin-left:-2.197905pt;}
._1{margin-left:-1.121182pt;}
._0{width:1.024788pt;}
._3{width:2.070903pt;}
._4{width:3.430034pt;}
._d{width:5.210276pt;}
._c{width:6.107073pt;}
._7{width:7.167245pt;}
._8{width:8.125656pt;}
._b{width:9.072189pt;}
._6{width:10.563300pt;}
._12{width:11.678891pt;}
._f{width:12.924993pt;}
._14{width:13.847566pt;}
._5{width:14.748668pt;}
._e{width:16.664829pt;}
._9{width:18.576820pt;}
._31{width:20.086290pt;}
._30{width:21.141522pt;}
._23{width:22.737982pt;}
._13{width:23.889117pt;}
._16{width:25.382279pt;}
._17{width:26.542136pt;}
._32{width:27.527991pt;}
._10{width:40.215891pt;}
._11{width:41.308423pt;}
._24{width:78.884422pt;}
._21{width:112.459421pt;}
._1c{width:136.710261pt;}
._33{width:151.910467pt;}
._22{width:156.703884pt;}
._19{width:184.276353pt;}
._27{width:194.852375pt;}
._1f{width:200.276383pt;}
._25{width:202.173917pt;}
._1a{width:211.208658pt;}
._26{width:226.541009pt;}
._29{width:234.238257pt;}
._2d{width:246.238252pt;}
._2a{width:258.605349pt;}
._2c{width:270.605344pt;}
._2e{width:294.238233pt;}
._2f{width:306.238228pt;}
._1d{width:317.891095pt;}
._20{width:323.208191pt;}
._28{width:330.605320pt;}
._18{width:354.435606pt;}
._2b{width:427.861071pt;}
._1b{width:441.667739pt;}
._1e{width:951.749223pt;}
.fs5{font-size:31.999987pt;}
.fs2{font-size:42.879983pt;}
.fs3{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs1{font-size:58.879976pt;}
.fs4{font-size:63.999974pt;}
.y5{bottom:-12.799995pt;}
.y0{bottom:0.000000pt;}
.yf4{bottom:2.559672pt;}
.y4d{bottom:3.359949pt;}
.ybf{bottom:3.519646pt;}
.ybd{bottom:3.519655pt;}
.yc1{bottom:3.519663pt;}
.yc3{bottom:3.519670pt;}
.yc8{bottom:3.519685pt;}
.y9c{bottom:3.519693pt;}
.ycb{bottom:3.519700pt;}
.y9a{bottom:3.519706pt;}
.yc6{bottom:3.839678pt;}
.y45{bottom:3.999629pt;}
.y3f{bottom:3.999656pt;}
.y12{bottom:3.999721pt;}
.y20{bottom:3.999734pt;}
.y9{bottom:3.999982pt;}
.ya{bottom:25.119990pt;}
.y8{bottom:40.960000pt;}
.y6{bottom:44.959982pt;}
.y7{bottom:46.399981pt;}
.ybb{bottom:118.719953pt;}
.yed{bottom:121.759951pt;}
.y98{bottom:122.239951pt;}
.y4c{bottom:123.680000pt;}
.y4b{bottom:127.039949pt;}
.y123{bottom:127.519949pt;}
.y7a{bottom:133.759946pt;}
.yba{bottom:137.119945pt;}
.yec{bottom:140.159944pt;}
.y97{bottom:140.639944pt;}
.y4a{bottom:143.519943pt;}
.y13d{bottom:144.319942pt;}
.y122{bottom:145.919942pt;}
.y79{bottom:152.159939pt;}
.yb9{bottom:155.519938pt;}
.yeb{bottom:158.559937pt;}
.y96{bottom:159.039936pt;}
.y49{bottom:159.999936pt;}
.y13c{bottom:161.279935pt;}
.y121{bottom:164.319934pt;}
.y78{bottom:170.559932pt;}
.yb8{bottom:173.919930pt;}
.y1e{bottom:175.199930pt;}
.y48{bottom:176.639929pt;}
.yea{bottom:176.959929pt;}
.y95{bottom:177.439929pt;}
.y13b{bottom:178.079929pt;}
.y120{bottom:182.719927pt;}
.y77{bottom:188.959924pt;}
.yb7{bottom:192.319923pt;}
.y47{bottom:193.119923pt;}
.y13a{bottom:195.039922pt;}
.ye9{bottom:195.359922pt;}
.y94{bottom:199.519920pt;}
.y11f{bottom:201.119920pt;}
.y76{bottom:207.359917pt;}
.y46{bottom:210.399916pt;}
.yb6{bottom:210.719916pt;}
.y139{bottom:211.839915pt;}
.ye8{bottom:213.759914pt;}
.y169{bottom:219.359912pt;}
.y11e{bottom:219.519912pt;}
.y93{bottom:221.599911pt;}
.y75{bottom:225.759910pt;}
.y138{bottom:228.639909pt;}
.yb5{bottom:229.119908pt;}
.ye7{bottom:232.159907pt;}
.y168{bottom:236.159906pt;}
.y3d{bottom:236.479905pt;}
.y11d{bottom:237.919905pt;}
.y92{bottom:243.679903pt;}
.y74{bottom:244.159902pt;}
.y137{bottom:245.599902pt;}
.yb4{bottom:247.519901pt;}
.ye6{bottom:250.399900pt;}
.y3c{bottom:251.839899pt;}
.y167{bottom:252.959899pt;}
.y11c{bottom:256.319897pt;}
.y73{bottom:262.399895pt;}
.y91{bottom:265.759894pt;}
.yb3{bottom:265.919894pt;}
.y3b{bottom:267.039893pt;}
.ye5{bottom:268.799892pt;}
.y166{bottom:269.919892pt;}
.y11b{bottom:274.719890pt;}
.y136{bottom:279.359888pt;}
.y72{bottom:280.799888pt;}
.y3a{bottom:282.399887pt;}
.yb2{bottom:284.319886pt;}
.y165{bottom:286.719885pt;}
.ye4{bottom:287.199885pt;}
.y90{bottom:287.839885pt;}
.y1d{bottom:291.359883pt;}
.y11a{bottom:293.119883pt;}
.y135{bottom:296.159882pt;}
.y39{bottom:297.759881pt;}
.y71{bottom:299.199880pt;}
.yb1{bottom:302.719879pt;}
.y164{bottom:303.679879pt;}
.ye3{bottom:305.599878pt;}
.y8f{bottom:309.919876pt;}
.y119{bottom:311.519875pt;}
.y134{bottom:312.959875pt;}
.y38{bottom:313.119875pt;}
.y70{bottom:317.599873pt;}
.y163{bottom:320.479872pt;}
.yb0{bottom:321.119872pt;}
.ye2{bottom:323.999870pt;}
.y37{bottom:328.479869pt;}
.y118{bottom:329.759868pt;}
.y133{bottom:329.919868pt;}
.y8e{bottom:331.999867pt;}
.y6f{bottom:335.999866pt;}
.y162{bottom:337.279865pt;}
.yaf{bottom:339.519864pt;}
.ye1{bottom:342.399863pt;}
.y36{bottom:343.839862pt;}
.y132{bottom:346.719861pt;}
.y117{bottom:348.159861pt;}
.y8d{bottom:354.079858pt;}
.y161{bottom:354.239858pt;}
.y6e{bottom:354.399858pt;}
.yae{bottom:357.919857pt;}
.y35{bottom:359.039856pt;}
.ye0{bottom:360.799856pt;}
.y131{bottom:363.679855pt;}
.y116{bottom:366.559853pt;}
.y160{bottom:371.039852pt;}
.y6d{bottom:372.799851pt;}
.y34{bottom:374.399850pt;}
.y8c{bottom:376.159850pt;}
.yad{bottom:376.319849pt;}
.ydf{bottom:379.199848pt;}
.y130{bottom:380.479848pt;}
.y115{bottom:384.959846pt;}
.y15f{bottom:387.999845pt;}
.y33{bottom:389.759844pt;}
.y6c{bottom:391.199844pt;}
.yac{bottom:394.719842pt;}
.y12f{bottom:397.279841pt;}
.yde{bottom:397.599841pt;}
.y8b{bottom:398.239841pt;}
.y1c{bottom:401.759839pt;}
.y114{bottom:403.359839pt;}
.y15e{bottom:404.799838pt;}
.y32{bottom:405.119838pt;}
.y6b{bottom:409.599836pt;}
.yab{bottom:413.119835pt;}
.y12e{bottom:414.239834pt;}
.ydd{bottom:415.999834pt;}
.y8a{bottom:420.319832pt;}
.y31{bottom:420.479832pt;}
.y15d{bottom:421.599831pt;}
.y113{bottom:421.759831pt;}
.y6a{bottom:427.999829pt;}
.y12d{bottom:431.039828pt;}
.yaa{bottom:431.519827pt;}
.ydc{bottom:434.399826pt;}
.y30{bottom:435.679826pt;}
.y15c{bottom:438.559825pt;}
.y112{bottom:440.159824pt;}
.y89{bottom:442.399823pt;}
.y69{bottom:446.399821pt;}
.y12c{bottom:447.999821pt;}
.ya9{bottom:449.919820pt;}
.y2f{bottom:451.039820pt;}
.ydb{bottom:452.799819pt;}
.y15b{bottom:455.359818pt;}
.y1b{bottom:457.759817pt;}
.y111{bottom:458.559817pt;}
.y88{bottom:464.479814pt;}
.y68{bottom:464.799814pt;}
.y2e{bottom:466.399813pt;}
.ya8{bottom:468.319813pt;}
.yda{bottom:471.199812pt;}
.y15a{bottom:472.319811pt;}
.y1a{bottom:472.479811pt;}
.y110{bottom:476.959809pt;}
.y12b{bottom:481.599807pt;}
.y2d{bottom:481.759807pt;}
.y67{bottom:483.199807pt;}
.y87{bottom:486.399805pt;}
.ya7{bottom:486.719805pt;}
.y19{bottom:487.199805pt;}
.y159{bottom:489.119804pt;}
.yd9{bottom:489.599804pt;}
.y10f{bottom:495.359802pt;}
.y2c{bottom:497.119801pt;}
.y12a{bottom:498.559801pt;}
.y18{bottom:500.799800pt;}
.y66{bottom:501.599799pt;}
.ya6{bottom:505.119798pt;}
.y158{bottom:506.079798pt;}
.yd8{bottom:507.999797pt;}
.y86{bottom:508.479797pt;}
.y2b{bottom:512.479795pt;}
.y129{bottom:515.359794pt;}
.y65{bottom:519.999792pt;}
.y10e{bottom:521.759791pt;}
.y157{bottom:522.879791pt;}
.ya5{bottom:523.519791pt;}
.yd7{bottom:526.399789pt;}
.y2a{bottom:527.679789pt;}
.y85{bottom:530.559788pt;}
.y128{bottom:532.319787pt;}
.y64{bottom:538.399785pt;}
.y156{bottom:539.679784pt;}
.ya4{bottom:541.919783pt;}
.y29{bottom:543.039783pt;}
.yd6{bottom:544.799782pt;}
.y10d{bottom:547.359781pt;}
.y84{bottom:548.959780pt;}
.y127{bottom:549.119780pt;}
.y17{bottom:555.679778pt;}
.y155{bottom:556.639777pt;}
.y63{bottom:556.799777pt;}
.y28{bottom:558.399777pt;}
.ya3{bottom:560.319776pt;}
.yd5{bottom:563.199775pt;}
.y126{bottom:565.919774pt;}
.y10a{bottom:566.559773pt;}
.y83{bottom:567.359773pt;}
.y10c{bottom:570.079772pt;}
.y154{bottom:573.439771pt;}
.y27{bottom:573.759770pt;}
.y62{bottom:575.199770pt;}
.ya2{bottom:578.719769pt;}
.y109{bottom:580.319768pt;}
.yd4{bottom:581.599767pt;}
.y125{bottom:582.879767pt;}
.y82{bottom:588.799764pt;}
.y26{bottom:589.119764pt;}
.y153{bottom:590.399764pt;}
.y61{bottom:593.599763pt;}
.y108{bottom:594.079762pt;}
.y10b{bottom:598.079761pt;}
.y124{bottom:599.679760pt;}
.yd3{bottom:599.999760pt;}
.y25{bottom:604.479758pt;}
.y152{bottom:607.199757pt;}
.ya1{bottom:607.359757pt;}
.y81{bottom:610.079756pt;}
.y16{bottom:610.559756pt;}
.y60{bottom:611.999755pt;}
.y107{bottom:616.799753pt;}
.yd2{bottom:618.399753pt;}
.y24{bottom:619.679752pt;}
.y151{bottom:623.999750pt;}
.y15{bottom:625.439750pt;}
.y5f{bottom:630.399748pt;}
.y80{bottom:631.359747pt;}
.ya0{bottom:634.239746pt;}
.y23{bottom:635.039746pt;}
.y104{bottom:635.839746pt;}
.yd1{bottom:636.799745pt;}
.y106{bottom:639.359744pt;}
.y150{bottom:640.959744pt;}
.y5e{bottom:648.799740pt;}
.y103{bottom:649.599740pt;}
.y22{bottom:650.399740pt;}
.y7f{bottom:652.639739pt;}
.yd0{bottom:655.199738pt;}
.y14f{bottom:657.759737pt;}
.y9f{bottom:659.839736pt;}
.y1f{bottom:660.320000pt;}
.y102{bottom:663.359735pt;}
.y21{bottom:665.759734pt;}
.y14{bottom:666.719733pt;}
.y5d{bottom:667.199733pt;}
.y105{bottom:667.359733pt;}
.ycf{bottom:673.599731pt;}
.y7e{bottom:673.919730pt;}
.y14e{bottom:674.719730pt;}
.y5c{bottom:685.599726pt;}
.y101{bottom:686.079726pt;}
.y9e{bottom:686.559725pt;}
.y14d{bottom:691.519723pt;}
.yce{bottom:691.999723pt;}
.y11{bottom:692.480000pt;}
.y7d{bottom:695.359722pt;}
.y13{bottom:697.599721pt;}
.y5b{bottom:703.999718pt;}
.yfe{bottom:705.119718pt;}
.y14c{bottom:708.319717pt;}
.y100{bottom:708.799716pt;}
.ycd{bottom:710.399716pt;}
.y9d{bottom:712.319715pt;}
.y7c{bottom:716.639713pt;}
.yfd{bottom:719.039712pt;}
.y5a{bottom:722.399711pt;}
.y14b{bottom:725.279710pt;}
.ycc{bottom:728.799708pt;}
.y99{bottom:730.240000pt;}
.yfc{bottom:732.799707pt;}
.yff{bottom:736.799705pt;}
.y7b{bottom:737.919705pt;}
.y10{bottom:738.559705pt;}
.y59{bottom:740.799704pt;}
.y14a{bottom:742.079703pt;}
.yca{bottom:746.720000pt;}
.yfb{bottom:755.359698pt;}
.yf{bottom:756.959697pt;}
.y149{bottom:759.039696pt;}
.y58{bottom:759.199696pt;}
.y9b{bottom:763.840000pt;}
.yc9{bottom:765.120000pt;}
.yf8{bottom:774.559690pt;}
.y148{bottom:775.839690pt;}
.y57{bottom:777.599689pt;}
.yfa{bottom:778.079689pt;}
.ye{bottom:783.359687pt;}
.yc7{bottom:783.520000pt;}
.yf7{bottom:788.319685pt;}
.y147{bottom:792.639683pt;}
.y56{bottom:795.999682pt;}
.yc5{bottom:801.600000pt;}
.yd{bottom:801.759679pt;}
.yf6{bottom:802.079679pt;}
.yc4{bottom:805.439678pt;}
.yf9{bottom:806.079678pt;}
.y146{bottom:809.599676pt;}
.y55{bottom:814.399674pt;}
.yf3{bottom:816.320000pt;}
.yee{bottom:819.519672pt;}
.yc{bottom:820.159672pt;}
.yc2{bottom:820.320000pt;}
.y145{bottom:826.399669pt;}
.yf2{bottom:832.639667pt;}
.y54{bottom:832.799667pt;}
.yc0{bottom:838.720000pt;}
.y144{bottom:843.359663pt;}
.yf1{bottom:846.559661pt;}
.y53{bottom:851.199660pt;}
.y43{bottom:853.919658pt;}
.y3e{bottom:856.480000pt;}
.y143{bottom:860.159656pt;}
.ybc{bottom:860.160000pt;}
.yf0{bottom:860.319656pt;}
.y52{bottom:869.599652pt;}
.yef{bottom:874.079650pt;}
.y42{bottom:875.999650pt;}
.y142{bottom:876.959649pt;}
.ybe{bottom:881.440000pt;}
.yf5{bottom:887.839645pt;}
.y51{bottom:887.999645pt;}
.y141{bottom:893.919642pt;}
.y41{bottom:899.359640pt;}
.y50{bottom:906.399637pt;}
.y140{bottom:910.719636pt;}
.y44{bottom:923.360000pt;}
.y4f{bottom:924.799630pt;}
.y40{bottom:925.599630pt;}
.y13f{bottom:927.679629pt;}
.y4e{bottom:943.199623pt;}
.y13e{bottom:944.479622pt;}
.y4{bottom:962.079615pt;}
.yb{bottom:985.279606pt;}
.y3{bottom:990.239604pt;}
.y2{bottom:1005.599598pt;}
.y1{bottom:1020.959592pt;}
.h3{height:1.280000pt;}
.h19{height:13.280000pt;}
.h12{height:16.000000pt;}
.ha{height:17.920000pt;}
.h5{height:18.080000pt;}
.h16{height:18.240000pt;}
.h1a{height:22.234366pt;}
.h4{height:29.312488pt;}
.hf{height:32.554674pt;}
.h7{height:32.624987pt;}
.hd{height:32.812487pt;}
.h18{height:33.351549pt;}
.he{height:34.968736pt;}
.h6{height:36.312485pt;}
.h1{height:36.909048pt;}
.hc{height:38.569047pt;}
.h11{height:38.698735pt;}
.h17{height:39.904984pt;}
.h2{height:40.249984pt;}
.h1b{height:40.911234pt;}
.hb{height:42.751233pt;}
.h8{height:43.374983pt;}
.h9{height:44.437482pt;}
.h13{height:44.468732pt;}
.h10{height:46.468731pt;}
.h15{height:46.593731pt;}
.h14{height:46.624981pt;}
.h0{height:1056.000000pt;}
.w7{width:3.200000pt;}
.w5{width:3.360000pt;}
.w1f{width:4.000000pt;}
.w16{width:4.160000pt;}
.w2{width:4.480000pt;}
.we{width:5.120000pt;}
.w13{width:5.440000pt;}
.w12{width:5.920000pt;}
.w23{width:6.080000pt;}
.w8{width:7.360000pt;}
.wa{width:7.840000pt;}
.wb{width:8.000000pt;}
.w1{width:8.640000pt;}
.w11{width:12.000000pt;}
.w9{width:12.480000pt;}
.w3{width:13.280000pt;}
.w22{width:16.640000pt;}
.w1c{width:21.280000pt;}
.w21{width:24.000000pt;}
.w1a{width:26.240000pt;}
.w17{width:28.000000pt;}
.w6{width:29.120000pt;}
.w24{width:29.600000pt;}
.w20{width:34.720000pt;}
.wc{width:36.480000pt;}
.w4{width:49.440000pt;}
.wf{width:51.520000pt;}
.w10{width:63.040000pt;}
.w1e{width:80.000000pt;}
.w14{width:87.040000pt;}
.wd{width:92.480000pt;}
.w1b{width:136.320000pt;}
.w19{width:168.000000pt;}
.w1d{width:193.760000pt;}
.w15{width:294.240000pt;}
.w18{width:354.240000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x28{left:94.560000pt;}
.x5{left:95.999962pt;}
.x2{left:97.119362pt;}
.x1{left:98.879960pt;}
.x26{left:102.718894pt;}
.x19{left:104.639958pt;}
.x17{left:106.399957pt;}
.x25{left:111.519955pt;}
.x15{left:116.159954pt;}
.x6{left:118.399953pt;}
.x1b{left:119.679952pt;}
.xd{left:121.760000pt;}
.x16{left:123.359951pt;}
.x3e{left:125.280000pt;}
.x9{left:126.399949pt;}
.xe{left:135.040000pt;}
.x27{left:143.998949pt;}
.x1a{left:147.839941pt;}
.x18{left:156.799937pt;}
.x45{left:173.119931pt;}
.x42{left:179.040000pt;}
.x43{left:183.040000pt;}
.xf{left:184.480000pt;}
.xa{left:185.599526pt;}
.x10{left:187.840000pt;}
.x57{left:191.999923pt;}
.x11{left:216.960000pt;}
.x12{left:220.160000pt;}
.x20{left:227.679909pt;}
.x1c{left:231.679907pt;}
.x3f{left:235.360000pt;}
.x50{left:241.279903pt;}
.x13{left:250.080000pt;}
.x40{left:256.640000pt;}
.x41{left:260.800000pt;}
.x1d{left:267.999893pt;}
.x14{left:269.759892pt;}
.xb{left:271.679431pt;}
.x1e{left:278.559889pt;}
.x21{left:303.679879pt;}
.x3d{left:316.480000pt;}
.x1f{left:323.679871pt;}
.xc{left:348.319861pt;}
.x7{left:355.359858pt;}
.x46{left:359.679871pt;}
.x47{left:376.320000pt;}
.x55{left:380.799848pt;}
.x56{left:388.639845pt;}
.x49{left:448.633961pt;}
.x4a{left:451.833962pt;}
.x3c{left:453.280000pt;}
.x29{left:454.720000pt;}
.x48{left:458.399817pt;}
.x4b{left:467.360000pt;}
.x51{left:469.279812pt;}
.x52{left:477.119809pt;}
.x38{left:480.320000pt;}
.x30{left:487.520000pt;}
.x2a{left:491.200000pt;}
.x4c{left:496.960000pt;}
.x31{left:499.520000pt;}
.x2d{left:506.240000pt;}
.x44{left:511.520000pt;}
.x39{left:515.520000pt;}
.x22{left:530.239788pt;}
.x24{left:531.840000pt;}
.x32{left:536.000000pt;}
.x35{left:539.040000pt;}
.x3{left:547.038462pt;}
.x4d{left:551.519779pt;}
.x4e{left:559.200000pt;}
.x3a{left:575.520000pt;}
.x2e{left:595.680000pt;}
.x36{left:610.560000pt;}
.x23{left:614.400000pt;}
.x2b{left:617.280000pt;}
.x33{left:618.560000pt;}
.x4f{left:635.680000pt;}
.x53{left:640.159744pt;}
.x3b{left:646.560000pt;}
.x54{left:647.999741pt;}
.x2f{left:668.800000pt;}
.x37{left:670.080000pt;}
.x2c{left:709.760000pt;}
.x34{left:711.040000pt;}
.x8{left:715.200000pt;}
.x4{left:719.999712pt;}
}




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