
    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_8559b75c9fb10a66d365d964.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_14dd84078837030af74ae71b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895996;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_72eaea9f8ae1c39a5ffa4bcd.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_e8a4ab265cf624ab5441c551.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_1b549c1110098ad25e40818c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.753418;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_03b96fb725fef481ddf927fd.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_43e427b1c15ee9943b04319a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.856934;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_bd8c9eca6425744f22c524cb.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_97634bead4b00533e27ef4a0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.740723;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_6d9990ad050d3547c420f851.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_cab87bc5027623da4a650009.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.861328;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_c61d42e4f9f934d5c44293cd.woff2')format("woff");}.ffc{font-family:ffc;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;}
.m1{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);}
.m3{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);}
.m4{transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-1.439999px;}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.034872px;}
.ls9{letter-spacing:0.068862px;}
.lsa{letter-spacing:0.068906px;}
.ls6{letter-spacing:0.182580px;}
.ls7{letter-spacing:8.690997px;}
.ls8{letter-spacing:19.476412px;}
.ls4{letter-spacing:44.935259px;}
.ls3{letter-spacing:94.820148px;}
.ls2{letter-spacing:118.625607px;}
.ls0{letter-spacing:1523.644186px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,176,80),0 0.015em rgb(0,176,80),0.015em 0 rgb(0,176,80),0 -0.015em  rgb(0,176,80);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(0,176,80);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-32.399987px;}
.ws8{word-spacing:-17.999993px;}
.ws0{word-spacing:-16.559993px;}
.ws2{word-spacing:-16.271993px;}
.ws3{word-spacing:-15.011994px;}
.ws5{word-spacing:-14.939994px;}
.ws1{word-spacing:-13.505755px;}
.ws6{word-spacing:-12.203995px;}
.ws7{word-spacing:0.000000px;}
._28{margin-left:-10.104284px;}
._2{margin-left:-8.590020px;}
._25{margin-left:-7.432364px;}
._27{margin-left:-6.310394px;}
._1a{margin-left:-5.220843px;}
._1{margin-left:-4.191630px;}
._4{margin-left:-3.023687px;}
._3{margin-left:-1.237776px;}
._0{width:1.152887px;}
._f{width:2.181319px;}
._a{width:3.461027px;}
._9{width:4.535642px;}
._7{width:5.788191px;}
._8{width:6.798760px;}
._e{width:7.900459px;}
._b{width:8.990724px;}
._c{width:10.061070px;}
._6{width:11.475301px;}
._5{width:12.695356px;}
._1b{width:14.165062px;}
._19{width:15.395565px;}
._10{width:17.139075px;}
._11{width:18.982544px;}
._18{width:20.041823px;}
._1e{width:21.167657px;}
._1f{width:22.993129px;}
._15{width:24.357488px;}
._d{width:25.543668px;}
._24{width:26.754555px;}
._23{width:27.851919px;}
._22{width:29.026717px;}
._20{width:30.211738px;}
._1c{width:31.437452px;}
._1d{width:32.440960px;}
._21{width:34.259604px;}
._13{width:35.668179px;}
._14{width:36.802961px;}
._12{width:44.902609px;}
._26{width:45.944916px;}
._17{width:78.609754px;}
._16{width:79.935366px;}
.fcc{color:rgb(0,101,204);}
.fca{color:rgb(44,62,80);}
.fc9{color:rgb(0,32,96);}
.fc8{color:rgb(83,129,53);}
.fc6{color:rgb(5,99,193);}
.fc5{color:rgb(0,112,192);}
.fc4{color:rgb(192,0,0);}
.fcb{color:rgb(51,51,51);}
.fc7{color:rgb(0,176,80);}
.fc3{color:rgb(68,84,106);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(64,64,64);}
.fs2{font-size:48.239981px;}
.fs1{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs4{font-size:66.239974px;}
.fs3{font-size:71.999971px;}
.fs5{font-size:84.239966px;}
.fs6{font-size:95.759962px;}
.y4{bottom:-11.699995px;}
.y0{bottom:0.000000px;}
.y8{bottom:28.259989px;}
.y6{bottom:52.919979px;}
.y7{bottom:53.279979px;}
.ye8{bottom:149.939940px;}
.y103{bottom:150.119940px;}
.ycd{bottom:150.479940px;}
.y16c{bottom:151.019940px;}
.y96{bottom:154.979938px;}
.y14e{bottom:155.519938px;}
.y14{bottom:155.699938px;}
.y5d{bottom:163.259935px;}
.ye7{bottom:170.639932px;}
.y102{bottom:170.819932px;}
.ycc{bottom:171.179932px;}
.y11f{bottom:174.239930px;}
.yb4{bottom:174.959930px;}
.y12b{bottom:175.139930px;}
.y95{bottom:175.679930px;}
.y14d{bottom:176.219930px;}
.y13{bottom:179.819928px;}
.y5c{bottom:187.199925px;}
.y101{bottom:191.519923px;}
.ycb{bottom:191.879923px;}
.y94{bottom:196.379921px;}
.y14c{bottom:196.919921px;}
.y72{bottom:198.179921px;}
.y12a{bottom:199.079920px;}
.y161{bottom:199.799920px;}
.y12{bottom:203.759918px;}
.y11e{bottom:210.059916px;}
.y16b{bottom:210.959916px;}
.y5b{bottom:211.139916px;}
.y100{bottom:212.219915px;}
.ye6{bottom:215.639914px;}
.yb3{bottom:216.719913px;}
.y93{bottom:217.079913px;}
.y14b{bottom:217.619913px;}
.y71{bottom:218.879912px;}
.y129{bottom:223.199911px;}
.y160{bottom:223.739911px;}
.y11{bottom:227.699909px;}
.y5a{bottom:235.079906px;}
.yca{bottom:236.879905px;}
.yb2{bottom:237.419905px;}
.y92{bottom:237.779905px;}
.yef{bottom:237.959905px;}
.y14a{bottom:238.319905px;}
.y70{bottom:239.579904px;}
.y11d{bottom:246.059902px;}
.y10{bottom:251.639899px;}
.ye5{bottom:257.219897px;}
.y91{bottom:258.479897px;}
.yee{bottom:258.659897px;}
.y128{bottom:259.019896px;}
.y15f{bottom:259.739896px;}
.y6f{bottom:260.279896px;}
.y11c{bottom:270.179892px;}
.y16a{bottom:270.899892px;}
.y59{bottom:271.079892px;}
.ye4{bottom:277.919889px;}
.yc9{bottom:278.459889px;}
.yb1{bottom:279.179888px;}
.yed{bottom:279.359888px;}
.y149{bottom:279.719888px;}
.y6e{bottom:280.979888px;}
.yff{bottom:281.159888px;}
.y127{bottom:283.139887px;}
.y15e{bottom:283.679887px;}
.yf{bottom:287.639885px;}
.y11b{bottom:294.119882px;}
.y58{bottom:295.019882px;}
.ye3{bottom:298.619881px;}
.yc8{bottom:299.159880px;}
.yb0{bottom:299.879880px;}
.y90{bottom:300.059880px;}
.yfe{bottom:305.279878px;}
.y126{bottom:307.079877px;}
.y11a{bottom:318.059873px;}
.y57{bottom:319.139872px;}
.ye2{bottom:319.319872px;}
.y15d{bottom:319.679872px;}
.yaf{bottom:320.579872px;}
.y8f{bottom:320.759872px;}
.y148{bottom:321.479871px;}
.y6d{bottom:322.559871px;}
.ye{bottom:323.639871px;}
.yfd{bottom:329.219868px;}
.y125{bottom:331.019868px;}
.ye1{bottom:340.019864px;}
.yc7{bottom:340.919864px;}
.yae{bottom:341.279863px;}
.y8e{bottom:341.459863px;}
.y119{bottom:341.999863px;}
.y147{bottom:342.179863px;}
.y56{bottom:343.079863px;}
.y6c{bottom:343.259863px;}
.y15c{bottom:343.619863px;}
.yfc{bottom:353.159859px;}
.y124{bottom:354.959858px;}
.y39{bottom:356.579857px;}
.ye0{bottom:360.719856px;}
.yc6{bottom:361.619855px;}
.yad{bottom:361.979855px;}
.y8d{bottom:362.159855px;}
.yec{bottom:362.519855px;}
.y146{bottom:362.879855px;}
.y6b{bottom:363.959854px;}
.y118{bottom:365.939854px;}
.y55{bottom:367.019853px;}
.y25{bottom:374.399850px;}
.y38{bottom:375.659850px;}
.yfb{bottom:377.099849px;}
.y123{bottom:378.899848px;}
.y15b{bottom:379.619848px;}
.ydf{bottom:381.599847px;}
.yc5{bottom:382.319847px;}
.yeb{bottom:383.219847px;}
.y145{bottom:383.579847px;}
.y6a{bottom:384.659846px;}
.y117{bottom:390.059844px;}
.y54{bottom:390.959844px;}
.y37{bottom:394.739842px;}
.yfa{bottom:401.039840px;}
.y122{bottom:403.019839px;}
.yac{bottom:403.559839px;}
.y8c{bottom:403.919838px;}
.y144{bottom:404.279838px;}
.y69{bottom:405.359838px;}
.y36{bottom:413.819834px;}
.y116{bottom:413.999834px;}
.y53{bottom:414.899834px;}
.yc4{bottom:424.079830px;}
.yab{bottom:424.259830px;}
.y8b{bottom:424.619830px;}
.yf9{bottom:424.979830px;}
.y68{bottom:426.239830px;}
.yde{bottom:426.419829px;}
.y169{bottom:426.779829px;}
.y121{bottom:426.959829px;}
.y115{bottom:437.939825px;}
.y15a{bottom:439.559824px;}
.yc3{bottom:444.779822px;}
.yaa{bottom:444.959822px;}
.y8a{bottom:445.319822px;}
.y143{bottom:445.679822px;}
.yf8{bottom:449.099820px;}
.y52{bottom:450.899820px;}
.y114{bottom:461.879815px;}
.ydd{bottom:462.419815px;}
.y159{bottom:463.499815px;}
.yc2{bottom:465.479814px;}
.ya9{bottom:465.659814px;}
.y89{bottom:466.019814px;}
.y67{bottom:471.059812px;}
.y35{bottom:474.659810px;}
.y51{bottom:474.839810px;}
.yf7{bottom:478.979808px;}
.y113{bottom:485.819806px;}
.ydc{bottom:486.359805px;}
.y120{bottom:486.899805px;}
.y142{bottom:487.259805px;}
.y34{bottom:494.639802px;}
.y24{bottom:496.439801px;}
.y50{bottom:498.959800px;}
.y158{bottom:499.499800px;}
.yc1{bottom:507.059797px;}
.ya8{bottom:507.419797px;}
.y88{bottom:507.779797px;}
.y141{bottom:507.959797px;}
.y112{bottom:509.939796px;}
.ydb{bottom:510.299796px;}
.y168{bottom:510.839796px;}
.y66{bottom:512.819795px;}
.yf6{bottom:514.979794px;}
.y4f{bottom:522.899791px;}
.y157{bottom:523.439791px;}
.y33{bottom:526.679789px;}
.yc0{bottom:527.759789px;}
.ya7{bottom:528.119789px;}
.y87{bottom:528.479789px;}
.y140{bottom:528.659789px;}
.y65{bottom:533.519787px;}
.y111{bottom:533.879786px;}
.yda{bottom:534.419786px;}
.yf5{bottom:538.919784px;}
.y32{bottom:546.659781px;}
.y4e{bottom:546.839781px;}
.ybf{bottom:548.459781px;}
.ya6{bottom:548.819780px;}
.y86{bottom:549.179780px;}
.y13f{bottom:549.359780px;}
.y64{bottom:554.219778px;}
.yd9{bottom:558.359777px;}
.y156{bottom:559.439776px;}
.yf4{bottom:562.859775px;}
.y110{bottom:563.759774px;}
.y31{bottom:566.639773px;}
.ya5{bottom:569.519772px;}
.y85{bottom:569.879772px;}
.y13e{bottom:570.059772px;}
.y4d{bottom:570.779772px;}
.y23{bottom:571.679771px;}
.y63{bottom:574.919770px;}
.yd8{bottom:582.299767px;}
.y155{bottom:583.379767px;}
.y30{bottom:586.619765px;}
.yf3{bottom:586.979765px;}
.ya4{bottom:590.219764px;}
.y84{bottom:590.579764px;}
.y13d{bottom:590.759764px;}
.y4c{bottom:594.719762px;}
.y62{bottom:595.619762px;}
.y22{bottom:599.759760px;}
.y10f{bottom:605.519758px;}
.yd7{bottom:606.239758px;}
.y2f{bottom:606.599757px;}
.y167{bottom:606.779757px;}
.ybe{bottom:610.919756px;}
.y83{bottom:611.279755px;}
.y13c{bottom:611.459755px;}
.y61{bottom:616.319753px;}
.y21{bottom:617.579753px;}
.y4b{bottom:618.839752px;}
.y154{bottom:619.379752px;}
.y10e{bottom:626.219750px;}
.y2e{bottom:626.579749px;}
.y166{bottom:630.719748px;}
.ybd{bottom:631.619747px;}
.ya3{bottom:631.979747px;}
.y13b{bottom:632.159747px;}
.y20{bottom:635.219746px;}
.y60{bottom:637.019745px;}
.yd6{bottom:642.239743px;}
.y4a{bottom:642.779743px;}
.y153{bottom:643.319743px;}
.y2d{bottom:646.559741px;}
.y10d{bottom:646.919741px;}
.y1f{bottom:651.779739px;}
.ybc{bottom:652.319739px;}
.ya2{bottom:652.679739px;}
.y82{bottom:656.099738px;}
.y5f{bottom:657.719737px;}
.yd5{bottom:666.179734px;}
.y2c{bottom:666.539733px;}
.y49{bottom:666.719733px;}
.ya1{bottom:673.379731px;}
.y13a{bottom:673.919730px;}
.yea{bottom:676.799729px;}
.y1e{bottom:678.779728px;}
.y152{bottom:679.319728px;}
.y2b{bottom:686.519725px;}
.y10c{bottom:688.679725px;}
.yd4{bottom:690.119724px;}
.y165{bottom:690.659724px;}
.ya0{bottom:694.079722px;}
.y139{bottom:694.619722px;}
.y1d{bottom:696.779721px;}
.y81{bottom:697.859721px;}
.y48{bottom:702.719719px;}
.y151{bottom:703.259719px;}
.y2a{bottom:706.499717px;}
.y10b{bottom:709.379716px;}
.yd3{bottom:714.239714px;}
.y9f{bottom:714.779714px;}
.y138{bottom:715.319714px;}
.y80{bottom:718.559713px;}
.y1c{bottom:721.259711px;}
.y29{bottom:726.479709px;}
.y47{bottom:726.659709px;}
.y10a{bottom:730.079708px;}
.ybb{bottom:735.299706px;}
.yf2{bottom:735.659706px;}
.y137{bottom:736.019706px;}
.y1b{bottom:736.739705px;}
.yd2{bottom:738.179705px;}
.y5e{bottom:738.719705px;}
.y7f{bottom:739.259704px;}
.y28{bottom:746.459701px;}
.y46{bottom:750.599700px;}
.y109{bottom:750.779700px;}
.yba{bottom:755.999698px;}
.y9e{bottom:756.359697px;}
.y136{bottom:756.719697px;}
.y7e{bottom:759.959696px;}
.yd1{bottom:762.119695px;}
.y26{bottom:763.379695px;}
.y27{bottom:766.439693px;}
.y1a{bottom:767.519693px;}
.y45{bottom:774.539690px;}
.y9d{bottom:777.059689px;}
.y135{bottom:777.419689px;}
.y7d{bottom:780.659688px;}
.y150{bottom:781.019688px;}
.yd0{bottom:786.059686px;}
.y164{bottom:786.599685px;}
.y108{bottom:792.359683px;}
.y9c{bottom:797.759681px;}
.y134{bottom:798.119681px;}
.y44{bottom:798.659681px;}
.y19{bottom:800.819680px;}
.y7c{bottom:801.359679px;}
.y14f{bottom:801.719679px;}
.y163{bottom:810.539676px;}
.y107{bottom:813.059675px;}
.y9b{bottom:818.459673px;}
.y133{bottom:818.819672px;}
.ycf{bottom:822.059671px;}
.ye9{bottom:822.419671px;}
.y43{bottom:822.599671px;}
.y106{bottom:833.759666px;}
.y9a{bottom:839.159664px;}
.yd{bottom:841.679663px;}
.y7b{bottom:843.119663px;}
.y42{bottom:846.539661px;}
.y105{bottom:854.459658px;}
.yb9{bottom:859.859656px;}
.yf1{bottom:860.219656px;}
.y132{bottom:860.399656px;}
.yc{bottom:863.639655px;}
.y7a{bottom:863.819654px;}
.y41{bottom:870.479652px;}
.y104{bottom:875.159650px;}
.y99{bottom:880.919648px;}
.y131{bottom:881.099648px;}
.y79{bottom:884.519646px;}
.yb{bottom:885.779646px;}
.y40{bottom:894.419642px;}
.y98{bottom:901.619639px;}
.y130{bottom:901.799639px;}
.y78{bottom:905.219638px;}
.y16e{bottom:906.479637px;}
.ya{bottom:907.739637px;}
.yb8{bottom:922.319631px;}
.y12f{bottom:922.499631px;}
.y77{bottom:925.919630px;}
.y3f{bottom:930.419628px;}
.y9{bottom:942.479623px;}
.yb7{bottom:943.019623px;}
.y12e{bottom:943.199623px;}
.y97{bottom:946.619621px;}
.yce{bottom:946.799621px;}
.y3e{bottom:954.359618px;}
.y12d{bottom:963.899614px;}
.y16d{bottom:966.419613px;}
.y76{bottom:967.499613px;}
.y3d{bottom:978.479609px;}
.yb6{bottom:984.599606px;}
.y17{bottom:985.139606px;}
.yf0{bottom:988.019605px;}
.y75{bottom:988.199605px;}
.y162{bottom:990.359604px;}
.y3c{bottom:1002.419599px;}
.y12c{bottom:1005.299598px;}
.yb5{bottom:1005.479598px;}
.y16{bottom:1006.199598px;}
.y74{bottom:1008.899596px;}
.y3b{bottom:1026.359589px;}
.y73{bottom:1029.599588px;}
.y3a{bottom:1050.299580px;}
.y15{bottom:1054.079578px;}
.y18{bottom:1062.539575px;}
.y5{bottom:1108.259557px;}
.y3{bottom:1112.759555px;}
.y2{bottom:1132.739547px;}
.y1{bottom:1152.719539px;}
.h3{height:1.080000px;}
.h5{height:34.625377px;}
.hf{height:36.624009px;}
.h4{height:36.703110px;}
.h2{height:38.759750px;}
.he{height:39.313461px;}
.ha{height:40.793187px;}
.h1{height:41.522679px;}
.h6{height:42.894123px;}
.h8{height:44.893107px;}
.hb{height:47.988262px;}
.h7{height:48.796855px;}
.hc{height:48.937480px;}
.h9{height:50.027324px;}
.hd{height:51.679667px;}
.h10{height:52.417948px;}
.h11{height:57.256852px;}
.h12{height:66.536341px;}
.h0{height:1188.000000px;}
.w1{width:7.920000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:107.999957px;}
.x18{left:117.899953px;}
.x15{left:123.479951px;}
.x13{left:127.259949px;}
.x1a{left:130.859948px;}
.x4{left:133.199947px;}
.x14{left:135.359873px;}
.x10{left:136.619945px;}
.x6{left:149.219940px;}
.x19{left:150.299940px;}
.x17{left:172.619931px;}
.x16{left:179.279926px;}
.x11{left:236.879905px;}
.x12{left:239.939904px;}
.x1b{left:256.499963px;}
.x1c{left:258.119897px;}
.xc{left:268.019893px;}
.x1d{left:273.599891px;}
.xb{left:282.959887px;}
.x1e{left:291.239884px;}
.x20{left:294.839882px;}
.x2{left:302.579879px;}
.x9{left:315.539874px;}
.x8{left:327.239869px;}
.x21{left:360.179856px;}
.x1f{left:366.480628px;}
.xa{left:388.259845px;}
.x5{left:398.519841px;}
.x7{left:401.039840px;}
.xd{left:447.479821px;}
.xe{left:543.599783px;}
.x3{left:684.359726px;}
.xf{left:799.919672px;}
@media print{
.v1{vertical-align:-1.279999pt;}
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.030997pt;}
.ls9{letter-spacing:0.061211pt;}
.lsa{letter-spacing:0.061250pt;}
.ls6{letter-spacing:0.162293pt;}
.ls7{letter-spacing:7.725330pt;}
.ls8{letter-spacing:17.312366pt;}
.ls4{letter-spacing:39.942453pt;}
.ls3{letter-spacing:84.284576pt;}
.ls2{letter-spacing:105.444984pt;}
.ls0{letter-spacing:1354.350388pt;}
.ws4{word-spacing:-28.799988pt;}
.ws8{word-spacing:-15.999994pt;}
.ws0{word-spacing:-14.719994pt;}
.ws2{word-spacing:-14.463994pt;}
.ws3{word-spacing:-13.343995pt;}
.ws5{word-spacing:-13.279995pt;}
.ws1{word-spacing:-12.005115pt;}
.ws6{word-spacing:-10.847996pt;}
.ws7{word-spacing:0.000000pt;}
._28{margin-left:-8.981586pt;}
._2{margin-left:-7.635573pt;}
._25{margin-left:-6.606546pt;}
._27{margin-left:-5.609239pt;}
._1a{margin-left:-4.640749pt;}
._1{margin-left:-3.725894pt;}
._4{margin-left:-2.687721pt;}
._3{margin-left:-1.100245pt;}
._0{width:1.024788pt;}
._f{width:1.938950pt;}
._a{width:3.076468pt;}
._9{width:4.031681pt;}
._7{width:5.145059pt;}
._8{width:6.043342pt;}
._e{width:7.022630pt;}
._b{width:7.991754pt;}
._c{width:8.943174pt;}
._6{width:10.200268pt;}
._5{width:11.284761pt;}
._1b{width:12.591166pt;}
._19{width:13.684947pt;}
._10{width:15.234734pt;}
._11{width:16.873372pt;}
._18{width:17.814954pt;}
._1e{width:18.815695pt;}
._1f{width:20.438337pt;}
._15{width:21.651101pt;}
._d{width:22.705483pt;}
._24{width:23.781826pt;}
._23{width:24.757261pt;}
._22{width:25.801527pt;}
._20{width:26.854878pt;}
._1c{width:27.944402pt;}
._1d{width:28.836409pt;}
._21{width:30.452981pt;}
._13{width:31.705048pt;}
._14{width:32.713743pt;}
._12{width:39.913430pt;}
._26{width:40.839925pt;}
._17{width:69.875337pt;}
._16{width:71.053658pt;}
.fs2{font-size:42.879983pt;}
.fs1{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs4{font-size:58.879976pt;}
.fs3{font-size:63.999974pt;}
.fs5{font-size:74.879970pt;}
.fs6{font-size:85.119966pt;}
.y4{bottom:-10.399996pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:25.119990pt;}
.y6{bottom:47.039981pt;}
.y7{bottom:47.359981pt;}
.ye8{bottom:133.279947pt;}
.y103{bottom:133.439947pt;}
.ycd{bottom:133.759946pt;}
.y16c{bottom:134.239946pt;}
.y96{bottom:137.759945pt;}
.y14e{bottom:138.239945pt;}
.y14{bottom:138.399945pt;}
.y5d{bottom:145.119942pt;}
.ye7{bottom:151.679939pt;}
.y102{bottom:151.839939pt;}
.ycc{bottom:152.159939pt;}
.y11f{bottom:154.879938pt;}
.yb4{bottom:155.519938pt;}
.y12b{bottom:155.679938pt;}
.y95{bottom:156.159938pt;}
.y14d{bottom:156.639937pt;}
.y13{bottom:159.839936pt;}
.y5c{bottom:166.399933pt;}
.y101{bottom:170.239932pt;}
.ycb{bottom:170.559932pt;}
.y94{bottom:174.559930pt;}
.y14c{bottom:175.039930pt;}
.y72{bottom:176.159930pt;}
.y12a{bottom:176.959929pt;}
.y161{bottom:177.599929pt;}
.y12{bottom:181.119928pt;}
.y11e{bottom:186.719925pt;}
.y16b{bottom:187.519925pt;}
.y5b{bottom:187.679925pt;}
.y100{bottom:188.639925pt;}
.ye6{bottom:191.679923pt;}
.yb3{bottom:192.639923pt;}
.y93{bottom:192.959923pt;}
.y14b{bottom:193.439923pt;}
.y71{bottom:194.559922pt;}
.y129{bottom:198.399921pt;}
.y160{bottom:198.879920pt;}
.y11{bottom:202.399919pt;}
.y5a{bottom:208.959916pt;}
.yca{bottom:210.559916pt;}
.yb2{bottom:211.039916pt;}
.y92{bottom:211.359915pt;}
.yef{bottom:211.519915pt;}
.y14a{bottom:211.839915pt;}
.y70{bottom:212.959915pt;}
.y11d{bottom:218.719913pt;}
.y10{bottom:223.679911pt;}
.ye5{bottom:228.639909pt;}
.y91{bottom:229.759908pt;}
.yee{bottom:229.919908pt;}
.y128{bottom:230.239908pt;}
.y15f{bottom:230.879908pt;}
.y6f{bottom:231.359907pt;}
.y11c{bottom:240.159904pt;}
.y16a{bottom:240.799904pt;}
.y59{bottom:240.959904pt;}
.ye4{bottom:247.039901pt;}
.yc9{bottom:247.519901pt;}
.yb1{bottom:248.159901pt;}
.yed{bottom:248.319901pt;}
.y149{bottom:248.639901pt;}
.y6e{bottom:249.759900pt;}
.yff{bottom:249.919900pt;}
.y127{bottom:251.679899pt;}
.y15e{bottom:252.159899pt;}
.yf{bottom:255.679898pt;}
.y11b{bottom:261.439895pt;}
.y58{bottom:262.239895pt;}
.ye3{bottom:265.439894pt;}
.yc8{bottom:265.919894pt;}
.yb0{bottom:266.559893pt;}
.y90{bottom:266.719893pt;}
.yfe{bottom:271.359891pt;}
.y126{bottom:272.959891pt;}
.y11a{bottom:282.719887pt;}
.y57{bottom:283.679887pt;}
.ye2{bottom:283.839886pt;}
.y15d{bottom:284.159886pt;}
.yaf{bottom:284.959886pt;}
.y8f{bottom:285.119886pt;}
.y148{bottom:285.759886pt;}
.y6d{bottom:286.719885pt;}
.ye{bottom:287.679885pt;}
.yfd{bottom:292.639883pt;}
.y125{bottom:294.239882pt;}
.ye1{bottom:302.239879pt;}
.yc7{bottom:303.039879pt;}
.yae{bottom:303.359879pt;}
.y8e{bottom:303.519879pt;}
.y119{bottom:303.999878pt;}
.y147{bottom:304.159878pt;}
.y56{bottom:304.959878pt;}
.y6c{bottom:305.119878pt;}
.y15c{bottom:305.439878pt;}
.yfc{bottom:313.919874pt;}
.y124{bottom:315.519874pt;}
.y39{bottom:316.959873pt;}
.ye0{bottom:320.639872pt;}
.yc6{bottom:321.439871pt;}
.yad{bottom:321.759871pt;}
.y8d{bottom:321.919871pt;}
.yec{bottom:322.239871pt;}
.y146{bottom:322.559871pt;}
.y6b{bottom:323.519871pt;}
.y118{bottom:325.279870pt;}
.y55{bottom:326.239870pt;}
.y25{bottom:332.799867pt;}
.y38{bottom:333.919866pt;}
.yfb{bottom:335.199866pt;}
.y123{bottom:336.799865pt;}
.y15b{bottom:337.439865pt;}
.ydf{bottom:339.199864pt;}
.yc5{bottom:339.839864pt;}
.yeb{bottom:340.639864pt;}
.y145{bottom:340.959864pt;}
.y6a{bottom:341.919863pt;}
.y117{bottom:346.719861pt;}
.y54{bottom:347.519861pt;}
.y37{bottom:350.879860pt;}
.yfa{bottom:356.479857pt;}
.y122{bottom:358.239857pt;}
.yac{bottom:358.719857pt;}
.y8c{bottom:359.039856pt;}
.y144{bottom:359.359856pt;}
.y69{bottom:360.319856pt;}
.y36{bottom:367.839853pt;}
.y116{bottom:367.999853pt;}
.y53{bottom:368.799852pt;}
.yc4{bottom:376.959849pt;}
.yab{bottom:377.119849pt;}
.y8b{bottom:377.439849pt;}
.yf9{bottom:377.759849pt;}
.y68{bottom:378.879848pt;}
.yde{bottom:379.039848pt;}
.y169{bottom:379.359848pt;}
.y121{bottom:379.519848pt;}
.y115{bottom:389.279844pt;}
.y15a{bottom:390.719844pt;}
.yc3{bottom:395.359842pt;}
.yaa{bottom:395.519842pt;}
.y8a{bottom:395.839842pt;}
.y143{bottom:396.159842pt;}
.yf8{bottom:399.199840pt;}
.y52{bottom:400.799840pt;}
.y114{bottom:410.559836pt;}
.ydd{bottom:411.039836pt;}
.y159{bottom:411.999835pt;}
.yc2{bottom:413.759834pt;}
.ya9{bottom:413.919834pt;}
.y89{bottom:414.239834pt;}
.y67{bottom:418.719833pt;}
.y35{bottom:421.919831pt;}
.y51{bottom:422.079831pt;}
.yf7{bottom:425.759830pt;}
.y113{bottom:431.839827pt;}
.ydc{bottom:432.319827pt;}
.y120{bottom:432.799827pt;}
.y142{bottom:433.119827pt;}
.y34{bottom:439.679824pt;}
.y24{bottom:441.279823pt;}
.y50{bottom:443.519823pt;}
.y158{bottom:443.999822pt;}
.yc1{bottom:450.719820pt;}
.ya8{bottom:451.039820pt;}
.y88{bottom:451.359819pt;}
.y141{bottom:451.519819pt;}
.y112{bottom:453.279819pt;}
.ydb{bottom:453.599819pt;}
.y168{bottom:454.079818pt;}
.y66{bottom:455.839818pt;}
.yf6{bottom:457.759817pt;}
.y4f{bottom:464.799814pt;}
.y157{bottom:465.279814pt;}
.y33{bottom:468.159813pt;}
.yc0{bottom:469.119812pt;}
.ya7{bottom:469.439812pt;}
.y87{bottom:469.759812pt;}
.y140{bottom:469.919812pt;}
.y65{bottom:474.239810pt;}
.y111{bottom:474.559810pt;}
.yda{bottom:475.039810pt;}
.yf5{bottom:479.039808pt;}
.y32{bottom:485.919806pt;}
.y4e{bottom:486.079806pt;}
.ybf{bottom:487.519805pt;}
.ya6{bottom:487.839805pt;}
.y86{bottom:488.159805pt;}
.y13f{bottom:488.319805pt;}
.y64{bottom:492.639803pt;}
.yd9{bottom:496.319801pt;}
.y156{bottom:497.279801pt;}
.yf4{bottom:500.319800pt;}
.y110{bottom:501.119800pt;}
.y31{bottom:503.679799pt;}
.ya5{bottom:506.239798pt;}
.y85{bottom:506.559797pt;}
.y13e{bottom:506.719797pt;}
.y4d{bottom:507.359797pt;}
.y23{bottom:508.159797pt;}
.y63{bottom:511.039796pt;}
.yd8{bottom:517.599793pt;}
.y155{bottom:518.559793pt;}
.y30{bottom:521.439791pt;}
.yf3{bottom:521.759791pt;}
.ya4{bottom:524.639790pt;}
.y84{bottom:524.959790pt;}
.y13d{bottom:525.119790pt;}
.y4c{bottom:528.639789pt;}
.y62{bottom:529.439788pt;}
.y22{bottom:533.119787pt;}
.y10f{bottom:538.239785pt;}
.yd7{bottom:538.879784pt;}
.y2f{bottom:539.199784pt;}
.y167{bottom:539.359784pt;}
.ybe{bottom:543.039783pt;}
.y83{bottom:543.359783pt;}
.y13c{bottom:543.519783pt;}
.y61{bottom:547.839781pt;}
.y21{bottom:548.959780pt;}
.y4b{bottom:550.079780pt;}
.y154{bottom:550.559780pt;}
.y10e{bottom:556.639777pt;}
.y2e{bottom:556.959777pt;}
.y166{bottom:560.639776pt;}
.ybd{bottom:561.439775pt;}
.ya3{bottom:561.759775pt;}
.y13b{bottom:561.919775pt;}
.y20{bottom:564.639774pt;}
.y60{bottom:566.239774pt;}
.yd6{bottom:570.879772pt;}
.y4a{bottom:571.359771pt;}
.y153{bottom:571.839771pt;}
.y2d{bottom:574.719770pt;}
.y10d{bottom:575.039770pt;}
.y1f{bottom:579.359768pt;}
.ybc{bottom:579.839768pt;}
.ya2{bottom:580.159768pt;}
.y82{bottom:583.199767pt;}
.y5f{bottom:584.639766pt;}
.yd5{bottom:592.159763pt;}
.y2c{bottom:592.479763pt;}
.y49{bottom:592.639763pt;}
.ya1{bottom:598.559761pt;}
.y13a{bottom:599.039760pt;}
.yea{bottom:601.599759pt;}
.y1e{bottom:603.359759pt;}
.y152{bottom:603.839758pt;}
.y2b{bottom:610.239756pt;}
.y10c{bottom:612.159755pt;}
.yd4{bottom:613.439755pt;}
.y165{bottom:613.919754pt;}
.ya0{bottom:616.959753pt;}
.y139{bottom:617.439753pt;}
.y1d{bottom:619.359752pt;}
.y81{bottom:620.319752pt;}
.y48{bottom:624.639750pt;}
.y151{bottom:625.119750pt;}
.y2a{bottom:627.999749pt;}
.y10b{bottom:630.559748pt;}
.yd3{bottom:634.879746pt;}
.y9f{bottom:635.359746pt;}
.y138{bottom:635.839746pt;}
.y80{bottom:638.719745pt;}
.y1c{bottom:641.119744pt;}
.y29{bottom:645.759742pt;}
.y47{bottom:645.919742pt;}
.y10a{bottom:648.959740pt;}
.ybb{bottom:653.599739pt;}
.yf2{bottom:653.919738pt;}
.y137{bottom:654.239738pt;}
.y1b{bottom:654.879738pt;}
.yd2{bottom:656.159738pt;}
.y5e{bottom:656.639737pt;}
.y7f{bottom:657.119737pt;}
.y28{bottom:663.519735pt;}
.y46{bottom:667.199733pt;}
.y109{bottom:667.359733pt;}
.yba{bottom:671.999731pt;}
.y9e{bottom:672.319731pt;}
.y136{bottom:672.639731pt;}
.y7e{bottom:675.519730pt;}
.yd1{bottom:677.439729pt;}
.y26{bottom:678.559729pt;}
.y27{bottom:681.279727pt;}
.y1a{bottom:682.239727pt;}
.y45{bottom:688.479725pt;}
.y9d{bottom:690.719724pt;}
.y135{bottom:691.039724pt;}
.y7d{bottom:693.919722pt;}
.y150{bottom:694.239722pt;}
.yd0{bottom:698.719721pt;}
.y164{bottom:699.199720pt;}
.y108{bottom:704.319718pt;}
.y9c{bottom:709.119716pt;}
.y134{bottom:709.439716pt;}
.y44{bottom:709.919716pt;}
.y19{bottom:711.839715pt;}
.y7c{bottom:712.319715pt;}
.y14f{bottom:712.639715pt;}
.y163{bottom:720.479712pt;}
.y107{bottom:722.719711pt;}
.y9b{bottom:727.519709pt;}
.y133{bottom:727.839709pt;}
.ycf{bottom:730.719708pt;}
.ye9{bottom:731.039708pt;}
.y43{bottom:731.199708pt;}
.y106{bottom:741.119704pt;}
.y9a{bottom:745.919702pt;}
.yd{bottom:748.159701pt;}
.y7b{bottom:749.439700pt;}
.y42{bottom:752.479699pt;}
.y105{bottom:759.519696pt;}
.yb9{bottom:764.319694pt;}
.yf1{bottom:764.639694pt;}
.y132{bottom:764.799694pt;}
.yc{bottom:767.679693pt;}
.y7a{bottom:767.839693pt;}
.y41{bottom:773.759690pt;}
.y104{bottom:777.919689pt;}
.y99{bottom:783.039687pt;}
.y131{bottom:783.199687pt;}
.y79{bottom:786.239686pt;}
.yb{bottom:787.359685pt;}
.y40{bottom:795.039682pt;}
.y98{bottom:801.439679pt;}
.y130{bottom:801.599679pt;}
.y78{bottom:804.639678pt;}
.y16e{bottom:805.759678pt;}
.ya{bottom:806.879677pt;}
.yb8{bottom:819.839672pt;}
.y12f{bottom:819.999672pt;}
.y77{bottom:823.039671pt;}
.y3f{bottom:827.039669pt;}
.y9{bottom:837.759665pt;}
.yb7{bottom:838.239665pt;}
.y12e{bottom:838.399665pt;}
.y97{bottom:841.439663pt;}
.yce{bottom:841.599663pt;}
.y3e{bottom:848.319661pt;}
.y12d{bottom:856.799657pt;}
.y16d{bottom:859.039656pt;}
.y76{bottom:859.999656pt;}
.y3d{bottom:869.759652pt;}
.yb6{bottom:875.199650pt;}
.y17{bottom:875.679650pt;}
.yf0{bottom:878.239649pt;}
.y75{bottom:878.399649pt;}
.y162{bottom:880.319648pt;}
.y3c{bottom:891.039644pt;}
.y12c{bottom:893.599643pt;}
.yb5{bottom:893.759642pt;}
.y16{bottom:894.399642pt;}
.y74{bottom:896.799641pt;}
.y3b{bottom:912.319635pt;}
.y73{bottom:915.199634pt;}
.y3a{bottom:933.599627pt;}
.y15{bottom:936.959625pt;}
.y18{bottom:944.479622pt;}
.y5{bottom:985.119606pt;}
.y3{bottom:989.119604pt;}
.y2{bottom:1006.879597pt;}
.y1{bottom:1024.639590pt;}
.h3{height:0.960000pt;}
.h5{height:30.778113pt;}
.hf{height:32.554674pt;}
.h4{height:32.624987pt;}
.h2{height:34.453111pt;}
.he{height:34.945299pt;}
.ha{height:36.260610pt;}
.h1{height:36.909048pt;}
.h6{height:38.128110pt;}
.h8{height:39.904984pt;}
.hb{height:42.656233pt;}
.h7{height:43.374983pt;}
.hc{height:43.499983pt;}
.h9{height:44.468732pt;}
.hd{height:45.937482pt;}
.h10{height:46.593731pt;}
.h11{height:50.894980pt;}
.h12{height:59.143414pt;}
.h0{height:1056.000000pt;}
.w1{width:7.040000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:95.999962pt;}
.x18{left:104.799958pt;}
.x15{left:109.759956pt;}
.x13{left:113.119955pt;}
.x1a{left:116.319953pt;}
.x4{left:118.399953pt;}
.x14{left:120.319887pt;}
.x10{left:121.439951pt;}
.x6{left:132.639947pt;}
.x19{left:133.599947pt;}
.x17{left:153.439939pt;}
.x16{left:159.359934pt;}
.x11{left:210.559916pt;}
.x12{left:213.279915pt;}
.x1b{left:227.999967pt;}
.x1c{left:229.439908pt;}
.xc{left:238.239905pt;}
.x1d{left:243.199903pt;}
.xb{left:251.519899pt;}
.x1e{left:258.879896pt;}
.x20{left:262.079895pt;}
.x2{left:268.959892pt;}
.x9{left:280.479888pt;}
.x8{left:290.879884pt;}
.x21{left:320.159872pt;}
.x1f{left:325.760558pt;}
.xa{left:345.119862pt;}
.x5{left:354.239858pt;}
.x7{left:356.479857pt;}
.xd{left:397.759841pt;}
.xe{left:483.199807pt;}
.x3{left:608.319757pt;}
.xf{left:711.039708pt;}
}




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