
    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_7929b28b06cdc1f343bbefe0.woff')format("woff");}.ff1{font-family:ff1;line-height:1.131836;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_55e46a9fe545c61051a57906.woff')format("woff");}.ff2{font-family:ff2;line-height:0.914062;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_20735369cff4f850d583c4b6.woff')format("woff");}.ff3{font-family:ff3;line-height:0.688477;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_eec36e54cf1885c3215245cb.woff')format("woff");}.ff4{font-family:ff4;line-height:1.065430;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_80429ab45801b3d0fe222b00.woff')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_64acbe26d0671d65d7bf3de4.woff')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_324e5890595dd3a491b50b27.woff')format("woff");}.ff7{font-family:ff7;line-height:0.914062;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_b4feb020e884746ba36338c3.woff')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_be9b26f4f23ccd2728a85133.woff')format("woff");}.ff9{font-family:ff9;line-height:0.940430;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_b6f4bac02b5fed23fafbdbee.woff')format("woff");}.ffa{font-family:ffa;line-height:0.767578;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_8b3326cff7c939dfc1188a55.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ffc{font-family:ffc;line-height:0.739746;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;}
.m2{transform:matrix(0.188405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188405,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.239185,0.000000,-0.079720,0.236949,0,0);-ms-transform:matrix(0.239185,0.000000,-0.079720,0.236949,0,0);-webkit-transform:matrix(0.239185,0.000000,-0.079720,0.236949,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.252360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252360,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.265323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265323,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.299621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299621,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.304858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304858,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-40.804869px;}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:5.760000px;}
.v2{vertical-align:23.760000px;}
.v7{vertical-align:26.996375px;}
.v6{vertical-align:57.344695px;}
.v4{vertical-align:59.184915px;}
.ls25{letter-spacing:-1.042854px;}
.ls27{letter-spacing:-0.966260px;}
.ls8{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.472200px;}
.lsc{letter-spacing:-0.457800px;}
.ls6{letter-spacing:-0.360000px;}
.ls1b{letter-spacing:-0.305400px;}
.lsb{letter-spacing:-0.262200px;}
.ls10{letter-spacing:-0.259800px;}
.ls2d{letter-spacing:-0.226200px;}
.ls2a{letter-spacing:-0.178800px;}
.lsa{letter-spacing:-0.152400px;}
.ls1e{letter-spacing:-0.112200px;}
.ls9{letter-spacing:-0.109200px;}
.ls21{letter-spacing:-0.106800px;}
.ls2f{letter-spacing:-0.089400px;}
.ls19{letter-spacing:-0.072000px;}
.ls4{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.017280px;}
.ls13{letter-spacing:0.053280px;}
.ls29{letter-spacing:0.071291px;}
.ls1f{letter-spacing:0.077131px;}
.ls1d{letter-spacing:0.079606px;}
.ls18{letter-spacing:0.080400px;}
.ls3{letter-spacing:0.089280px;}
.ls7{letter-spacing:0.091200px;}
.ls14{letter-spacing:0.149760px;}
.ls2{letter-spacing:0.178560px;}
.lse{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.206400px;}
.ls2c{letter-spacing:0.226200px;}
.ls11{letter-spacing:0.259800px;}
.ls1a{letter-spacing:0.262200px;}
.ls1c{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.360000px;}
.ls2b{letter-spacing:0.404400px;}
.ls28{letter-spacing:0.707020px;}
.ls1{letter-spacing:0.720000px;}
.ls26{letter-spacing:0.966260px;}
.ls23{letter-spacing:1.042854px;}
.ls22{letter-spacing:1.259095px;}
.ls2e{letter-spacing:6.785280px;}
.ls20{letter-spacing:23.030804px;}
.lsd{letter-spacing:39.905280px;}
.ls16{letter-spacing:149.572732px;}
.ls17{letter-spacing:151.649092px;}
.ls15{letter-spacing:371.203105px;}
.ls24{letter-spacing:822.560030px;}
.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;}
}
.ws1d{word-spacing:-44.198638px;}
.ws27{word-spacing:-39.581994px;}
.ws3{word-spacing:-21.151200px;}
.ws1c{word-spacing:-20.126884px;}
.ws23{word-spacing:-19.067442px;}
.ws21{word-spacing:-18.024588px;}
.ws20{word-spacing:-17.999467px;}
.ws22{word-spacing:-16.981733px;}
.ws18{word-spacing:-16.865400px;}
.ws16{word-spacing:-16.822200px;}
.ws13{word-spacing:-16.640400px;}
.ws6{word-spacing:-16.560000px;}
.ws15{word-spacing:-16.488000px;}
.ws7{word-spacing:-16.450800px;}
.ws1e{word-spacing:-16.447800px;}
.ws9{word-spacing:-16.407600px;}
.wsa{word-spacing:-16.297800px;}
.ws17{word-spacing:-16.254600px;}
.wsb{word-spacing:-16.102200px;}
.ws5{word-spacing:-15.840000px;}
.wse{word-spacing:-15.300000px;}
.ws12{word-spacing:-15.199800px;}
.ws10{word-spacing:-15.146400px;}
.ws14{word-spacing:-15.120000px;}
.ws0{word-spacing:-14.970240px;}
.ws4{word-spacing:-14.940000px;}
.ws1f{word-spacing:-14.833200px;}
.ws11{word-spacing:-14.680200px;}
.wsd{word-spacing:-14.580000px;}
.ws1{word-spacing:-13.500000px;}
.ws2{word-spacing:-13.140000px;}
.ws1a{word-spacing:-11.813956px;}
.ws1b{word-spacing:-11.734350px;}
.ws24{word-spacing:-11.474932px;}
.ws26{word-spacing:-11.215692px;}
.ws29{word-spacing:-10.844400px;}
.ws2a{word-spacing:-10.666200px;}
.ws8{word-spacing:-10.440000px;}
.ws2c{word-spacing:-10.350600px;}
.ws28{word-spacing:-10.261200px;}
.ws2b{word-spacing:-10.213800px;}
.wsf{word-spacing:-9.720000px;}
.ws25{word-spacing:-9.542411px;}
.wsc{word-spacing:0.000000px;}
.ws19{word-spacing:262.442049px;}
._1c{margin-left:-757.394557px;}
._1b{margin-left:-394.192565px;}
._20{margin-left:-296.549298px;}
._21{margin-left:-267.040729px;}
._28{margin-left:-259.865815px;}
._24{margin-left:-256.441080px;}
._22{margin-left:-248.733463px;}
._23{margin-left:-244.280989px;}
._25{margin-left:-215.578603px;}
._29{margin-left:-214.422113px;}
._19{margin-left:-194.055232px;}
._16{margin-left:-192.045708px;}
._18{margin-left:-183.184892px;}
._1a{margin-left:-164.558523px;}
._17{margin-left:-161.651094px;}
._2b{margin-left:-159.277510px;}
._26{margin-left:-157.023884px;}
._1d{margin-left:-153.650145px;}
._1e{margin-left:-141.657992px;}
._27{margin-left:-127.069810px;}
._1f{margin-left:-120.929183px;}
._2a{margin-left:-88.313338px;}
._0{margin-left:-1.258800px;}
._2{width:1.042800px;}
._1{width:2.122560px;}
._e{width:3.568320px;}
._5{width:4.968000px;}
._6{width:6.160560px;}
._d{width:7.352640px;}
._7{width:8.544960px;}
._8{width:9.869760px;}
._b{width:11.257200px;}
._14{width:12.403440px;}
._9{width:13.428480px;}
._a{width:14.803440px;}
._4{width:18.680640px;}
._3{width:19.938240px;}
._c{width:21.064320px;}
._12{width:23.184000px;}
._13{width:24.216960px;}
._f{width:26.032320px;}
._10{width:27.357360px;}
._11{width:28.483440px;}
._2d{width:31.061760px;}
._2c{width:32.722560px;}
._15{width:847.596000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs10{font-size:41.976104px;}
.fs12{font-size:42.034687px;}
.fsc{font-size:45.477990px;}
.fsa{font-size:46.937401px;}
.fs1{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fse{font-size:71.997867px;}
.fs5{font-size:72.000000px;}
.fs11{font-size:72.098350px;}
.fsf{font-size:75.963571px;}
.fsd{font-size:78.004339px;}
.fsb{font-size:80.507538px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:108.000000px;}
.fs9{font-size:126.172555px;}
.y0{bottom:0.000000px;}
.ya9{bottom:5.171428px;}
.y8a{bottom:5.873283px;}
.y7e{bottom:6.061750px;}
.yaf{bottom:6.928647px;}
.ya7{bottom:9.700918px;}
.ya8{bottom:9.700922px;}
.yab{bottom:9.700941px;}
.y70{bottom:10.260000px;}
.y6e{bottom:10.440000px;}
.y80{bottom:11.086810px;}
.y1e{bottom:11.880000px;}
.yb1{bottom:20.929261px;}
.y8c{bottom:20.943340px;}
.yad{bottom:23.824291px;}
.y8f{bottom:25.811830px;}
.y8e{bottom:25.811845px;}
.y82{bottom:26.640120px;}
.y10{bottom:27.900000px;}
.yb0{bottom:32.179714px;}
.yaa{bottom:32.883570px;}
.y4a{bottom:32.940000px;}
.y1f{bottom:34.380000px;}
.y8b{bottom:35.239649px;}
.y7f{bottom:36.370499px;}
.yac{bottom:37.412491px;}
.y49{bottom:37.620000px;}
.y1d{bottom:37.800000px;}
.y8d{bottom:40.147992px;}
.y81{bottom:41.436349px;}
.y7d{bottom:41.755432px;}
.y4b{bottom:56.520000px;}
.y20{bottom:57.420000px;}
.y48{bottom:63.540000px;}
.y1c{bottom:63.720000px;}
.y7{bottom:72.540000px;}
.y47{bottom:77.220000px;}
.y1b{bottom:78.300000px;}
.y6{bottom:104.760000px;}
.y5{bottom:137.160000px;}
.y4{bottom:160.200000px;}
.y45{bottom:175.680000px;}
.ye1{bottom:176.760000px;}
.yc3{bottom:178.200000px;}
.y66{bottom:183.060000px;}
.ya5{bottom:187.560000px;}
.yfb{bottom:190.800000px;}
.y44{bottom:197.670000px;}
.ye0{bottom:198.750000px;}
.yc2{bottom:200.190000px;}
.y3{bottom:202.530000px;}
.y5e{bottom:204.870000px;}
.ya4{bottom:209.370000px;}
.y43{bottom:219.450000px;}
.yfa{bottom:221.790000px;}
.yc1{bottom:221.970000px;}
.y2{bottom:223.410000px;}
.y65{bottom:226.830000px;}
.ydf{bottom:229.530000px;}
.ya3{bottom:231.150000px;}
.y5d{bottom:235.110000px;}
.y42{bottom:241.230000px;}
.yc0{bottom:243.750000px;}
.yf9{bottom:252.570000px;}
.ya2{bottom:253.110000px;}
.y64{bottom:257.610000px;}
.yde{bottom:260.310000px;}
.y19{bottom:261.030000px;}
.y41{bottom:263.010000px;}
.ybf{bottom:265.530000px;}
.y88{bottom:265.710000px;}
.ya1{bottom:274.890000px;}
.ydd{bottom:282.090000px;}
.y18{bottom:282.810000px;}
.yf8{bottom:283.350000px;}
.y40{bottom:284.790000px;}
.ybe{bottom:287.490000px;}
.y87{bottom:287.670000px;}
.y63{bottom:288.390000px;}
.ya0{bottom:305.670000px;}
.y3f{bottom:306.750000px;}
.ybd{bottom:309.270000px;}
.y86{bottom:309.450000px;}
.y62{bottom:310.170000px;}
.ydc{bottom:313.050000px;}
.yf7{bottom:314.130000px;}
.y17{bottom:322.770000px;}
.y9f{bottom:327.450000px;}
.y3e{bottom:328.530000px;}
.ybc{bottom:331.050000px;}
.y85{bottom:331.230000px;}
.y61{bottom:331.950000px;}
.ydb{bottom:343.830000px;}
.y16{bottom:344.550000px;}
.yf6{bottom:345.090000px;}
.y9e{bottom:349.410000px;}
.y3d{bottom:350.310000px;}
.ybb{bottom:352.830000px;}
.y84{bottom:353.010000px;}
.y60{bottom:353.910000px;}
.yda{bottom:365.610000px;}
.y15{bottom:366.330000px;}
.y9d{bottom:371.190000px;}
.yf5{bottom:375.870000px;}
.y7c{bottom:380.445000px;}
.y3c{bottom:381.090000px;}
.yba{bottom:383.070000px;}
.y5f{bottom:384.150000px;}
.y14{bottom:388.110000px;}
.yd9{bottom:396.435000px;}
.y9c{bottom:402.015000px;}
.y3b{bottom:403.095000px;}
.y83{bottom:404.355000px;}
.yf4{bottom:406.695000px;}
.y13{bottom:410.115000px;}
.y9b{bottom:423.795000px;}
.y3a{bottom:424.875000px;}
.yd8{bottom:427.215000px;}
.yb9{bottom:428.835000px;}
.y12{bottom:431.895000px;}
.yf3{bottom:437.475000px;}
.y9a{bottom:445.575000px;}
.y11{bottom:453.675000px;}
.y39{bottom:455.655000px;}
.y7b{bottom:456.015000px;}
.yd7{bottom:458.175000px;}
.y89{bottom:465.944959px;}
.y99{bottom:467.535000px;}
.yf2{bottom:468.255000px;}
.y38{bottom:477.435000px;}
.y7a{bottom:486.975000px;}
.yd6{bottom:488.955000px;}
.y98{bottom:489.315000px;}
.y37{bottom:499.215000px;}
.yf{bottom:505.155000px;}
.y79{bottom:517.755000px;}
.y97{bottom:520.095000px;}
.y36{bottom:521.175000px;}
.yf1{bottom:529.995000px;}
.ya6{bottom:532.394959px;}
.y35{bottom:542.955000px;}
.yd5{bottom:546.735000px;}
.y78{bottom:548.535000px;}
.y106{bottom:550.695000px;}
.y96{bottom:550.875000px;}
.yf0{bottom:551.775000px;}
.y34{bottom:564.735000px;}
.yd4{bottom:568.515000px;}
.y77{bottom:570.315000px;}
.y105{bottom:580.035000px;}
.y95{bottom:581.835000px;}
.yef{bottom:582.555000px;}
.y33{bottom:586.515000px;}
.yd3{bottom:590.295000px;}
.y76{bottom:592.095000px;}
.y32{bottom:608.325000px;}
.y104{bottom:610.845000px;}
.ye{bottom:611.745000px;}
.y94{bottom:612.645000px;}
.yee{bottom:613.545000px;}
.y75{bottom:614.085000px;}
.yd2{bottom:621.285000px;}
.y31{bottom:630.285000px;}
.y5c{bottom:632.805000px;}
.y93{bottom:634.425000px;}
.y74{bottom:635.865000px;}
.y103{bottom:641.625000px;}
.yed{bottom:644.325000px;}
.yd{bottom:650.085000px;}
.yd1{bottom:652.065000px;}
.y5b{bottom:654.585000px;}
.y73{bottom:657.645000px;}
.y30{bottom:661.065000px;}
.y102{bottom:663.585000px;}
.y92{bottom:664.665000px;}
.yec{bottom:666.105000px;}
.yc{bottom:672.045000px;}
.yd0{bottom:673.845000px;}
.y5a{bottom:676.545000px;}
.y2f{bottom:682.845000px;}
.y91{bottom:684.465000px;}
.y101{bottom:694.365000px;}
.ycf{bottom:695.625000px;}
.yeb{bottom:696.885000px;}
.y59{bottom:698.325000px;}
.y2e{bottom:704.625000px;}
.yb{bottom:709.485000px;}
.y90{bottom:710.385000px;}
.y72{bottom:715.965000px;}
.yce{bottom:717.585000px;}
.yea{bottom:718.665000px;}
.y58{bottom:720.105000px;}
.y100{bottom:725.145000px;}
.y2d{bottom:726.585000px;}
.ycd{bottom:739.365000px;}
.y57{bottom:741.885000px;}
.y2c{bottom:748.365000px;}
.y71{bottom:749.265000px;}
.ye9{bottom:749.625000px;}
.yff{bottom:755.925000px;}
.ycc{bottom:761.145000px;}
.y56{bottom:763.665000px;}
.y2b{bottom:770.145000px;}
.ye8{bottom:771.405000px;}
.ya{bottom:772.845000px;}
.y6f{bottom:782.385000px;}
.ycb{bottom:782.925000px;}
.y55{bottom:785.625000px;}
.yfe{bottom:786.705000px;}
.y2a{bottom:791.925000px;}
.ye7{bottom:802.185000px;}
.y54{bottom:807.450000px;}
.y9{bottom:809.250000px;}
.yb8{bottom:811.590000px;}
.y29{bottom:813.750000px;}
.y6d{bottom:815.550000px;}
.yfd{bottom:817.710000px;}
.ye6{bottom:833.010000px;}
.yb7{bottom:833.370000px;}
.y28{bottom:835.710000px;}
.y53{bottom:838.230000px;}
.yca{bottom:844.710000px;}
.yfc{bottom:848.490000px;}
.ye5{bottom:854.790000px;}
.y27{bottom:857.490000px;}
.y52{bottom:860.010000px;}
.y6c{bottom:863.430000px;}
.yb6{bottom:864.150000px;}
.yc9{bottom:866.490000px;}
.y26{bottom:879.270000px;}
.y51{bottom:881.790000px;}
.y6b{bottom:883.230000px;}
.ye4{bottom:885.750000px;}
.yc8{bottom:888.270000px;}
.yb5{bottom:894.930000px;}
.y25{bottom:901.050000px;}
.y50{bottom:903.750000px;}
.y8{bottom:906.270000px;}
.yc7{bottom:910.050000px;}
.y6a{bottom:912.750000px;}
.ye3{bottom:916.530000px;}
.yb4{bottom:916.890000px;}
.y24{bottom:923.010000px;}
.y4f{bottom:925.530000px;}
.yc6{bottom:932.010000px;}
.y69{bottom:934.530000px;}
.ye2{bottom:938.310000px;}
.yb3{bottom:938.670000px;}
.y23{bottom:944.790000px;}
.y4e{bottom:947.310000px;}
.yc5{bottom:953.790000px;}
.y68{bottom:956.310000px;}
.yae{bottom:965.970000px;}
.y22{bottom:966.570000px;}
.y4d{bottom:969.090000px;}
.yc4{bottom:975.570000px;}
.y67{bottom:978.090000px;}
.yb2{bottom:987.090000px;}
.y21{bottom:997.350000px;}
.y4c{bottom:1000.050000px;}
.y1{bottom:1036.980000px;}
.y1a{bottom:1037.160000px;}
.y46{bottom:1038.600000px;}
.h15{height:32.400000px;}
.h16{height:32.436000px;}
.h3{height:33.683203px;}
.h25{height:34.597492px;}
.h1e{height:37.483812px;}
.h4{height:37.705078px;}
.h19{height:38.686686px;}
.he{height:41.726953px;}
.h13{height:42.164648px;}
.hc{height:46.251562px;}
.hb{height:46.736719px;}
.h14{height:47.998125px;}
.hf{height:48.224531px;}
.h9{height:49.255313px;}
.h27{height:49.500228px;}
.h2b{height:50.060475px;}
.h23{height:50.271948px;}
.h28{height:50.342110px;}
.h7{height:50.800781px;}
.h24{height:52.744237px;}
.h10{height:52.918594px;}
.h21{height:54.161216px;}
.h8{height:54.596250px;}
.h22{height:55.423748px;}
.h1c{height:55.899277px;}
.h5{height:57.051211px;}
.h1d{height:58.423614px;}
.h26{height:59.341992px;}
.h29{height:59.424812px;}
.h11{height:59.439023px;}
.h17{height:60.298415px;}
.h2a{height:61.642152px;}
.h1f{height:64.292639px;}
.ha{height:64.800000px;}
.h2{height:65.884219px;}
.h1a{height:66.355822px;}
.h12{height:77.580000px;}
.hd{height:77.760000px;}
.h18{height:87.606139px;}
.h6{height:91.441406px;}
.h20{height:111.505911px;}
.h1b{height:115.084192px;}
.h1{height:1105.500000px;}
.h0{height:1105.560000px;}
.w4{width:39.600000px;}
.w6{width:39.996000px;}
.w7{width:43.560000px;}
.wf{width:46.080000px;}
.w9{width:49.500000px;}
.w8{width:52.416000px;}
.wb{width:59.256000px;}
.we{width:64.476000px;}
.wd{width:65.880000px;}
.wa{width:70.920000px;}
.wc{width:104.220000px;}
.w12{width:110.850005px;}
.w11{width:117.447733px;}
.w10{width:178.201686px;}
.w13{width:268.345202px;}
.w5{width:676.230000px;}
.w3{width:682.530000px;}
.w2{width:702.105000px;}
.w1{width:850.499987px;}
.w0{width:850.500000px;}
.x0{left:0.000000px;}
.x2e{left:3.956829px;}
.x6{left:8.640000px;}
.x17{left:10.440000px;}
.x23{left:12.240000px;}
.x26{left:13.500000px;}
.x22{left:14.940000px;}
.x1a{left:16.200000px;}
.x15{left:18.000000px;}
.x24{left:22.860000px;}
.x1e{left:25.740000px;}
.x20{left:28.125000px;}
.x2f{left:30.654356px;}
.x3e{left:36.304623px;}
.x25{left:43.740000px;}
.x5{left:45.360000px;}
.x35{left:47.138837px;}
.x3{left:48.960000px;}
.x29{left:51.105694px;}
.x8{left:53.999987px;}
.x3c{left:57.059023px;}
.x3f{left:61.655921px;}
.x37{left:69.119987px;}
.x3d{left:73.362009px;}
.x34{left:81.964856px;}
.xb{left:83.160000px;}
.x3b{left:88.263373px;}
.x32{left:90.470728px;}
.x1{left:91.835987px;}
.x2{left:93.096000px;}
.x33{left:95.404777px;}
.x2c{left:99.731605px;}
.x46{left:101.555987px;}
.x9{left:108.035987px;}
.x2a{left:112.317807px;}
.x48{left:118.835987px;}
.xa{left:120.095987px;}
.x12{left:130.535987px;}
.x2d{left:141.635657px;}
.xe{left:145.835987px;}
.x2b{left:155.270544px;}
.x14{left:165.990000px;}
.x43{left:185.900103px;}
.x41{left:200.000497px;}
.x16{left:209.550000px;}
.x44{left:210.880618px;}
.x42{left:224.981012px;}
.x40{left:257.871510px;}
.x18{left:261.975000px;}
.x10{left:268.274987px;}
.x3a{left:289.214980px;}
.x38{left:302.834987px;}
.x28{left:306.239980px;}
.x19{left:311.475000px;}
.x31{left:331.364980px;}
.x47{left:338.114987px;}
.x4{left:364.034987px;}
.x1b{left:382.395000px;}
.x39{left:414.074987px;}
.x13{left:423.254987px;}
.x1c{left:441.645000px;}
.x27{left:462.524987px;}
.x30{left:484.484987px;}
.x1d{left:545.865000px;}
.x36{left:596.444987px;}
.x1f{left:611.745000px;}
.xf{left:656.789987px;}
.x45{left:659.129987px;}
.x11{left:666.689987px;}
.x21{left:676.230000px;}
.x7{left:727.890000px;}
.xc{left:759.390000px;}
.xd{left:796.679987px;}
@media print{
.v5{vertical-align:-36.270994pt;}
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:5.120000pt;}
.v2{vertical-align:21.120000pt;}
.v7{vertical-align:23.996778pt;}
.v6{vertical-align:50.973062pt;}
.v4{vertical-align:52.608814pt;}
.ls25{letter-spacing:-0.926982pt;}
.ls27{letter-spacing:-0.858898pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.419733pt;}
.lsc{letter-spacing:-0.406933pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls1b{letter-spacing:-0.271467pt;}
.lsb{letter-spacing:-0.233067pt;}
.ls10{letter-spacing:-0.230933pt;}
.ls2d{letter-spacing:-0.201067pt;}
.ls2a{letter-spacing:-0.158933pt;}
.lsa{letter-spacing:-0.135467pt;}
.ls1e{letter-spacing:-0.099733pt;}
.ls9{letter-spacing:-0.097067pt;}
.ls21{letter-spacing:-0.094933pt;}
.ls2f{letter-spacing:-0.079467pt;}
.ls19{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.015360pt;}
.ls13{letter-spacing:0.047360pt;}
.ls29{letter-spacing:0.063370pt;}
.ls1f{letter-spacing:0.068561pt;}
.ls1d{letter-spacing:0.070761pt;}
.ls18{letter-spacing:0.071467pt;}
.ls3{letter-spacing:0.079360pt;}
.ls7{letter-spacing:0.081067pt;}
.ls14{letter-spacing:0.133120pt;}
.ls2{letter-spacing:0.158720pt;}
.lse{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.183467pt;}
.ls2c{letter-spacing:0.201067pt;}
.ls11{letter-spacing:0.230933pt;}
.ls1a{letter-spacing:0.233067pt;}
.ls1c{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls2b{letter-spacing:0.359467pt;}
.ls28{letter-spacing:0.628462pt;}
.ls1{letter-spacing:0.640000pt;}
.ls26{letter-spacing:0.858898pt;}
.ls23{letter-spacing:0.926982pt;}
.ls22{letter-spacing:1.119195pt;}
.ls2e{letter-spacing:6.031360pt;}
.ls20{letter-spacing:20.471826pt;}
.lsd{letter-spacing:35.471360pt;}
.ls16{letter-spacing:132.953540pt;}
.ls17{letter-spacing:134.799193pt;}
.ls15{letter-spacing:329.958316pt;}
.ls24{letter-spacing:731.164471pt;}
.ws1d{word-spacing:-39.287678pt;}
.ws27{word-spacing:-35.183995pt;}
.ws3{word-spacing:-18.801067pt;}
.ws1c{word-spacing:-17.890564pt;}
.ws23{word-spacing:-16.948837pt;}
.ws21{word-spacing:-16.021856pt;}
.ws20{word-spacing:-15.999526pt;}
.ws22{word-spacing:-15.094874pt;}
.ws18{word-spacing:-14.991467pt;}
.ws16{word-spacing:-14.953067pt;}
.ws13{word-spacing:-14.791467pt;}
.ws6{word-spacing:-14.720000pt;}
.ws15{word-spacing:-14.656000pt;}
.ws7{word-spacing:-14.622933pt;}
.ws1e{word-spacing:-14.620267pt;}
.ws9{word-spacing:-14.584533pt;}
.wsa{word-spacing:-14.486933pt;}
.ws17{word-spacing:-14.448533pt;}
.wsb{word-spacing:-14.313067pt;}
.ws5{word-spacing:-14.080000pt;}
.wse{word-spacing:-13.600000pt;}
.ws12{word-spacing:-13.510933pt;}
.ws10{word-spacing:-13.463467pt;}
.ws14{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.306880pt;}
.ws4{word-spacing:-13.280000pt;}
.ws1f{word-spacing:-13.185067pt;}
.ws11{word-spacing:-13.049067pt;}
.wsd{word-spacing:-12.960000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws2{word-spacing:-11.680000pt;}
.ws1a{word-spacing:-10.501295pt;}
.ws1b{word-spacing:-10.430534pt;}
.ws24{word-spacing:-10.199940pt;}
.ws26{word-spacing:-9.969504pt;}
.ws29{word-spacing:-9.639467pt;}
.ws2a{word-spacing:-9.481067pt;}
.ws8{word-spacing:-9.280000pt;}
.ws2c{word-spacing:-9.200533pt;}
.ws28{word-spacing:-9.121067pt;}
.ws2b{word-spacing:-9.078933pt;}
.wsf{word-spacing:-8.640000pt;}
.ws25{word-spacing:-8.482143pt;}
.wsc{word-spacing:0.000000pt;}
.ws19{word-spacing:233.281821pt;}
._1c{margin-left:-673.239607pt;}
._1b{margin-left:-350.393391pt;}
._20{margin-left:-263.599376pt;}
._21{margin-left:-237.369537pt;}
._28{margin-left:-230.991835pt;}
._24{margin-left:-227.947627pt;}
._22{margin-left:-221.096411pt;}
._23{margin-left:-217.138657pt;}
._25{margin-left:-191.625425pt;}
._29{margin-left:-190.597434pt;}
._19{margin-left:-172.493540pt;}
._16{margin-left:-170.707296pt;}
._18{margin-left:-162.831015pt;}
._1a{margin-left:-146.274243pt;}
._17{margin-left:-143.689861pt;}
._2b{margin-left:-141.580009pt;}
._26{margin-left:-139.576786pt;}
._1d{margin-left:-136.577906pt;}
._1e{margin-left:-125.918215pt;}
._27{margin-left:-112.950942pt;}
._1f{margin-left:-107.492607pt;}
._2a{margin-left:-78.500745pt;}
._0{margin-left:-1.118933pt;}
._2{width:0.926933pt;}
._1{width:1.886720pt;}
._e{width:3.171840pt;}
._5{width:4.416000pt;}
._6{width:5.476053pt;}
._d{width:6.535680pt;}
._7{width:7.595520pt;}
._8{width:8.773120pt;}
._b{width:10.006400pt;}
._14{width:11.025280pt;}
._9{width:11.936427pt;}
._a{width:13.158613pt;}
._4{width:16.605013pt;}
._3{width:17.722880pt;}
._c{width:18.723840pt;}
._12{width:20.608000pt;}
._13{width:21.526187pt;}
._f{width:23.139840pt;}
._10{width:24.317653pt;}
._11{width:25.318613pt;}
._2d{width:27.610453pt;}
._2c{width:29.086720pt;}
._15{width:753.418667pt;}
.fs8{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs10{font-size:37.312092pt;}
.fs12{font-size:37.364166pt;}
.fsc{font-size:40.424880pt;}
.fsa{font-size:41.722134pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fse{font-size:63.998104pt;}
.fs5{font-size:64.000000pt;}
.fs11{font-size:64.087422pt;}
.fsf{font-size:67.523174pt;}
.fsd{font-size:69.337190pt;}
.fsb{font-size:71.562256pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:96.000000pt;}
.fs9{font-size:112.153382pt;}
.y0{bottom:0.000000pt;}
.ya9{bottom:4.596825pt;}
.y8a{bottom:5.220696pt;}
.y7e{bottom:5.388222pt;}
.yaf{bottom:6.158798pt;}
.ya7{bottom:8.623038pt;}
.ya8{bottom:8.623042pt;}
.yab{bottom:8.623059pt;}
.y70{bottom:9.120000pt;}
.y6e{bottom:9.280000pt;}
.y80{bottom:9.854942pt;}
.y1e{bottom:10.560000pt;}
.yb1{bottom:18.603787pt;}
.y8c{bottom:18.616303pt;}
.yad{bottom:21.177147pt;}
.y8f{bottom:22.943849pt;}
.y8e{bottom:22.943862pt;}
.y82{bottom:23.680107pt;}
.y10{bottom:24.800000pt;}
.yb0{bottom:28.604190pt;}
.yaa{bottom:29.229840pt;}
.y4a{bottom:29.280000pt;}
.y1f{bottom:30.560000pt;}
.y8b{bottom:31.324132pt;}
.y7f{bottom:32.329332pt;}
.yac{bottom:33.255548pt;}
.y49{bottom:33.440000pt;}
.y1d{bottom:33.600000pt;}
.y8d{bottom:35.687104pt;}
.y81{bottom:36.832310pt;}
.y7d{bottom:37.115939pt;}
.y4b{bottom:50.240000pt;}
.y20{bottom:51.040000pt;}
.y48{bottom:56.480000pt;}
.y1c{bottom:56.640000pt;}
.y7{bottom:64.480000pt;}
.y47{bottom:68.640000pt;}
.y1b{bottom:69.600000pt;}
.y6{bottom:93.120000pt;}
.y5{bottom:121.920000pt;}
.y4{bottom:142.400000pt;}
.y45{bottom:156.160000pt;}
.ye1{bottom:157.120000pt;}
.yc3{bottom:158.400000pt;}
.y66{bottom:162.720000pt;}
.ya5{bottom:166.720000pt;}
.yfb{bottom:169.600000pt;}
.y44{bottom:175.706667pt;}
.ye0{bottom:176.666667pt;}
.yc2{bottom:177.946667pt;}
.y3{bottom:180.026667pt;}
.y5e{bottom:182.106667pt;}
.ya4{bottom:186.106667pt;}
.y43{bottom:195.066667pt;}
.yfa{bottom:197.146667pt;}
.yc1{bottom:197.306667pt;}
.y2{bottom:198.586667pt;}
.y65{bottom:201.626667pt;}
.ydf{bottom:204.026667pt;}
.ya3{bottom:205.466667pt;}
.y5d{bottom:208.986667pt;}
.y42{bottom:214.426667pt;}
.yc0{bottom:216.666667pt;}
.yf9{bottom:224.506667pt;}
.ya2{bottom:224.986667pt;}
.y64{bottom:228.986667pt;}
.yde{bottom:231.386667pt;}
.y19{bottom:232.026667pt;}
.y41{bottom:233.786667pt;}
.ybf{bottom:236.026667pt;}
.y88{bottom:236.186667pt;}
.ya1{bottom:244.346667pt;}
.ydd{bottom:250.746667pt;}
.y18{bottom:251.386667pt;}
.yf8{bottom:251.866667pt;}
.y40{bottom:253.146667pt;}
.ybe{bottom:255.546667pt;}
.y87{bottom:255.706667pt;}
.y63{bottom:256.346667pt;}
.ya0{bottom:271.706667pt;}
.y3f{bottom:272.666667pt;}
.ybd{bottom:274.906667pt;}
.y86{bottom:275.066667pt;}
.y62{bottom:275.706667pt;}
.ydc{bottom:278.266667pt;}
.yf7{bottom:279.226667pt;}
.y17{bottom:286.906667pt;}
.y9f{bottom:291.066667pt;}
.y3e{bottom:292.026667pt;}
.ybc{bottom:294.266667pt;}
.y85{bottom:294.426667pt;}
.y61{bottom:295.066667pt;}
.ydb{bottom:305.626667pt;}
.y16{bottom:306.266667pt;}
.yf6{bottom:306.746667pt;}
.y9e{bottom:310.586667pt;}
.y3d{bottom:311.386667pt;}
.ybb{bottom:313.626667pt;}
.y84{bottom:313.786667pt;}
.y60{bottom:314.586667pt;}
.yda{bottom:324.986667pt;}
.y15{bottom:325.626667pt;}
.y9d{bottom:329.946667pt;}
.yf5{bottom:334.106667pt;}
.y7c{bottom:338.173333pt;}
.y3c{bottom:338.746667pt;}
.yba{bottom:340.506667pt;}
.y5f{bottom:341.466667pt;}
.y14{bottom:344.986667pt;}
.yd9{bottom:352.386667pt;}
.y9c{bottom:357.346667pt;}
.y3b{bottom:358.306667pt;}
.y83{bottom:359.426667pt;}
.yf4{bottom:361.506667pt;}
.y13{bottom:364.546667pt;}
.y9b{bottom:376.706667pt;}
.y3a{bottom:377.666667pt;}
.yd8{bottom:379.746667pt;}
.yb9{bottom:381.186667pt;}
.y12{bottom:383.906667pt;}
.yf3{bottom:388.866667pt;}
.y9a{bottom:396.066667pt;}
.y11{bottom:403.266667pt;}
.y39{bottom:405.026667pt;}
.y7b{bottom:405.346667pt;}
.yd7{bottom:407.266667pt;}
.y89{bottom:414.173297pt;}
.y99{bottom:415.586667pt;}
.yf2{bottom:416.226667pt;}
.y38{bottom:424.386667pt;}
.y7a{bottom:432.866667pt;}
.yd6{bottom:434.626667pt;}
.y98{bottom:434.946667pt;}
.y37{bottom:443.746667pt;}
.yf{bottom:449.026667pt;}
.y79{bottom:460.226667pt;}
.y97{bottom:462.306667pt;}
.y36{bottom:463.266667pt;}
.yf1{bottom:471.106667pt;}
.ya6{bottom:473.239964pt;}
.y35{bottom:482.626667pt;}
.yd5{bottom:485.986667pt;}
.y78{bottom:487.586667pt;}
.y106{bottom:489.506667pt;}
.y96{bottom:489.666667pt;}
.yf0{bottom:490.466667pt;}
.y34{bottom:501.986667pt;}
.yd4{bottom:505.346667pt;}
.y77{bottom:506.946667pt;}
.y105{bottom:515.586667pt;}
.y95{bottom:517.186667pt;}
.yef{bottom:517.826667pt;}
.y33{bottom:521.346667pt;}
.yd3{bottom:524.706667pt;}
.y76{bottom:526.306667pt;}
.y32{bottom:540.733333pt;}
.y104{bottom:542.973333pt;}
.ye{bottom:543.773333pt;}
.y94{bottom:544.573333pt;}
.yee{bottom:545.373333pt;}
.y75{bottom:545.853333pt;}
.yd2{bottom:552.253333pt;}
.y31{bottom:560.253333pt;}
.y5c{bottom:562.493333pt;}
.y93{bottom:563.933333pt;}
.y74{bottom:565.213333pt;}
.y103{bottom:570.333333pt;}
.yed{bottom:572.733333pt;}
.yd{bottom:577.853333pt;}
.yd1{bottom:579.613333pt;}
.y5b{bottom:581.853333pt;}
.y73{bottom:584.573333pt;}
.y30{bottom:587.613333pt;}
.y102{bottom:589.853333pt;}
.y92{bottom:590.813333pt;}
.yec{bottom:592.093333pt;}
.yc{bottom:597.373333pt;}
.yd0{bottom:598.973333pt;}
.y5a{bottom:601.373333pt;}
.y2f{bottom:606.973333pt;}
.y91{bottom:608.413333pt;}
.y101{bottom:617.213333pt;}
.ycf{bottom:618.333333pt;}
.yeb{bottom:619.453333pt;}
.y59{bottom:620.733333pt;}
.y2e{bottom:626.333333pt;}
.yb{bottom:630.653333pt;}
.y90{bottom:631.453333pt;}
.y72{bottom:636.413333pt;}
.yce{bottom:637.853333pt;}
.yea{bottom:638.813333pt;}
.y58{bottom:640.093333pt;}
.y100{bottom:644.573333pt;}
.y2d{bottom:645.853333pt;}
.ycd{bottom:657.213333pt;}
.y57{bottom:659.453333pt;}
.y2c{bottom:665.213333pt;}
.y71{bottom:666.013333pt;}
.ye9{bottom:666.333333pt;}
.yff{bottom:671.933333pt;}
.ycc{bottom:676.573333pt;}
.y56{bottom:678.813333pt;}
.y2b{bottom:684.573333pt;}
.ye8{bottom:685.693333pt;}
.ya{bottom:686.973333pt;}
.y6f{bottom:695.453333pt;}
.ycb{bottom:695.933333pt;}
.y55{bottom:698.333333pt;}
.yfe{bottom:699.293333pt;}
.y2a{bottom:703.933333pt;}
.ye7{bottom:713.053333pt;}
.y54{bottom:717.733333pt;}
.y9{bottom:719.333333pt;}
.yb8{bottom:721.413333pt;}
.y29{bottom:723.333333pt;}
.y6d{bottom:724.933333pt;}
.yfd{bottom:726.853333pt;}
.ye6{bottom:740.453333pt;}
.yb7{bottom:740.773333pt;}
.y28{bottom:742.853333pt;}
.y53{bottom:745.093333pt;}
.yca{bottom:750.853333pt;}
.yfc{bottom:754.213333pt;}
.ye5{bottom:759.813333pt;}
.y27{bottom:762.213333pt;}
.y52{bottom:764.453333pt;}
.y6c{bottom:767.493333pt;}
.yb6{bottom:768.133333pt;}
.yc9{bottom:770.213333pt;}
.y26{bottom:781.573333pt;}
.y51{bottom:783.813333pt;}
.y6b{bottom:785.093333pt;}
.ye4{bottom:787.333333pt;}
.yc8{bottom:789.573333pt;}
.yb5{bottom:795.493333pt;}
.y25{bottom:800.933333pt;}
.y50{bottom:803.333333pt;}
.y8{bottom:805.573333pt;}
.yc7{bottom:808.933333pt;}
.y6a{bottom:811.333333pt;}
.ye3{bottom:814.693333pt;}
.yb4{bottom:815.013333pt;}
.y24{bottom:820.453333pt;}
.y4f{bottom:822.693333pt;}
.yc6{bottom:828.453333pt;}
.y69{bottom:830.693333pt;}
.ye2{bottom:834.053333pt;}
.yb3{bottom:834.373333pt;}
.y23{bottom:839.813333pt;}
.y4e{bottom:842.053333pt;}
.yc5{bottom:847.813333pt;}
.y68{bottom:850.053333pt;}
.yae{bottom:858.640000pt;}
.y22{bottom:859.173333pt;}
.y4d{bottom:861.413333pt;}
.yc4{bottom:867.173333pt;}
.y67{bottom:869.413333pt;}
.yb2{bottom:877.413333pt;}
.y21{bottom:886.533333pt;}
.y4c{bottom:888.933333pt;}
.y1{bottom:921.760000pt;}
.y1a{bottom:921.920000pt;}
.y46{bottom:923.200000pt;}
.h15{height:28.800000pt;}
.h16{height:28.832000pt;}
.h3{height:29.940625pt;}
.h25{height:30.753326pt;}
.h1e{height:33.318944pt;}
.h4{height:33.515625pt;}
.h19{height:34.388165pt;}
.he{height:37.090625pt;}
.h13{height:37.479688pt;}
.hc{height:41.112500pt;}
.hb{height:41.543750pt;}
.h14{height:42.665000pt;}
.hf{height:42.866250pt;}
.h9{height:43.782500pt;}
.h27{height:44.000202pt;}
.h2b{height:44.498200pt;}
.h23{height:44.686176pt;}
.h28{height:44.748542pt;}
.h7{height:45.156250pt;}
.h24{height:46.883766pt;}
.h10{height:47.038750pt;}
.h21{height:48.143303pt;}
.h8{height:48.530000pt;}
.h22{height:49.265554pt;}
.h1c{height:49.688246pt;}
.h5{height:50.712187pt;}
.h1d{height:51.932102pt;}
.h26{height:52.748437pt;}
.h29{height:52.822055pt;}
.h11{height:52.834688pt;}
.h17{height:53.598592pt;}
.h2a{height:54.793024pt;}
.h1f{height:57.149012pt;}
.ha{height:57.600000pt;}
.h2{height:58.563750pt;}
.h1a{height:58.982953pt;}
.h12{height:68.960000pt;}
.hd{height:69.120000pt;}
.h18{height:77.872124pt;}
.h6{height:81.281250pt;}
.h20{height:99.116366pt;}
.h1b{height:102.297060pt;}
.h1{height:982.666667pt;}
.h0{height:982.720000pt;}
.w4{width:35.200000pt;}
.w6{width:35.552000pt;}
.w7{width:38.720000pt;}
.wf{width:40.960000pt;}
.w9{width:44.000000pt;}
.w8{width:46.592000pt;}
.wb{width:52.672000pt;}
.we{width:57.312000pt;}
.wd{width:58.560000pt;}
.wa{width:63.040000pt;}
.wc{width:92.640000pt;}
.w12{width:98.533338pt;}
.w11{width:104.397985pt;}
.w10{width:158.401498pt;}
.w13{width:238.529068pt;}
.w5{width:601.093333pt;}
.w3{width:606.693333pt;}
.w2{width:624.093333pt;}
.w1{width:755.999989pt;}
.w0{width:756.000000pt;}
.x0{left:0.000000pt;}
.x2e{left:3.517181pt;}
.x6{left:7.680000pt;}
.x17{left:9.280000pt;}
.x23{left:10.880000pt;}
.x26{left:12.000000pt;}
.x22{left:13.280000pt;}
.x1a{left:14.400000pt;}
.x15{left:16.000000pt;}
.x24{left:20.320000pt;}
.x1e{left:22.880000pt;}
.x20{left:25.000000pt;}
.x2f{left:27.248317pt;}
.x3e{left:32.270776pt;}
.x25{left:38.880000pt;}
.x5{left:40.320000pt;}
.x35{left:41.901188pt;}
.x3{left:43.520000pt;}
.x29{left:45.427283pt;}
.x8{left:47.999989pt;}
.x3c{left:50.719131pt;}
.x3f{left:54.805263pt;}
.x37{left:61.439989pt;}
.x3d{left:65.210675pt;}
.x34{left:72.857650pt;}
.xb{left:73.920000pt;}
.x3b{left:78.456331pt;}
.x32{left:80.418425pt;}
.x1{left:81.631989pt;}
.x2{left:82.752000pt;}
.x33{left:84.804246pt;}
.x2c{left:88.650316pt;}
.x46{left:90.271989pt;}
.x9{left:96.031989pt;}
.x2a{left:99.838050pt;}
.x48{left:105.631989pt;}
.xa{left:106.751989pt;}
.x12{left:116.031989pt;}
.x2d{left:125.898362pt;}
.xe{left:129.631989pt;}
.x2b{left:138.018261pt;}
.x14{left:147.546667pt;}
.x43{left:165.244536pt;}
.x41{left:177.778220pt;}
.x16{left:186.266667pt;}
.x44{left:187.449439pt;}
.x42{left:199.983122pt;}
.x40{left:229.219120pt;}
.x18{left:232.866667pt;}
.x10{left:238.466655pt;}
.x3a{left:257.079982pt;}
.x38{left:269.186655pt;}
.x28{left:272.213315pt;}
.x19{left:276.866667pt;}
.x31{left:294.546649pt;}
.x47{left:300.546655pt;}
.x4{left:323.586655pt;}
.x1b{left:339.906667pt;}
.x39{left:368.066655pt;}
.x13{left:376.226655pt;}
.x1c{left:392.573333pt;}
.x27{left:411.133322pt;}
.x30{left:430.653322pt;}
.x1d{left:485.213333pt;}
.x36{left:530.173322pt;}
.x1f{left:543.773333pt;}
.xf{left:583.813322pt;}
.x45{left:585.893322pt;}
.x11{left:592.613322pt;}
.x21{left:601.093333pt;}
.x7{left:647.013333pt;}
.xc{left:675.013333pt;}
.xd{left:708.159989pt;}
}




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